Created
June 9, 2020 07:29
-
-
Save jamesmartin/b1bbbcdf2d160d9c2142c103c7897b19 to your computer and use it in GitHub Desktop.
Curl a bunch of URLs out of a file π€·ββοΈ
This file contains 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
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