Skip to content

Instantly share code, notes, and snippets.

@IlanVivanco
Last active April 14, 2020 13:30
Show Gist options
  • Save IlanVivanco/e9266e5b050d8b55e469ece3e925cab9 to your computer and use it in GitHub Desktop.
Save IlanVivanco/e9266e5b050d8b55e469ece3e925cab9 to your computer and use it in GitHub Desktop.
Download images from URL from list
while read -r url name ; do
wget -O $name $url
done < images.txt
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