Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmartin/b1bbbcdf2d160d9c2142c103c7897b19 to your computer and use it in GitHub Desktop.
Save jamesmartin/b1bbbcdf2d160d9c2142c103c7897b19 to your computer and use it in GitHub Desktop.
Curl a bunch of URLs out of a file 🤷‍♂️
cat urls
http://www.fillmurray.com/200/300
http://www.fillmurray.com/g/200/300
http://www.fillmurray.com/400/600
while read url; do curl -O "$url"; done <urls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment