Created
April 5, 2023 03:10
-
-
Save afeijo/b765a62fe4776d30a8faa26fc1d10a8a to your computer and use it in GitHub Desktop.
Bash script to download random picsum.photos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/bin/bash | |
| for i in {1..50} | |
| do | |
| echo "Downloading image $i" | |
| wget https://picsum.photos/1024/768 -O "~/Pictures/image $i.png" &> /dev/null & | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment