Last active
April 14, 2020 13:30
-
-
Save IlanVivanco/e9266e5b050d8b55e469ece3e925cab9 to your computer and use it in GitHub Desktop.
Download images from URL from list
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
while read -r url name ; do | |
wget -O $name $url | |
done < images.txt |
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
https://picsum.photos/id/0/1280/800 images/0.jpg | |
https://picsum.photos/id/1/1280/800 images/1.jpg | |
https://picsum.photos/id/10/1280/800 images/10.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment