Skip to content

Instantly share code, notes, and snippets.

@apeckham
Created May 5, 2024 06:21
Show Gist options
  • Save apeckham/66838395e62cb04b05779fbc52a1e1a9 to your computer and use it in GitHub Desktop.
Save apeckham/66838395e62cb04b05779fbc52a1e1a9 to your computer and use it in GitHub Desktop.
100 random size images
for i in {1..100}; do
curl -L -o $i.jpg $(ruby -e 'puts "https://picsum.photos/" + (rand(1..100) * 10).to_s + "/" + (rand(1..100) * 10).to_s')
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment