Created
December 28, 2016 22:05
-
-
Save carlosipe/90457403d47d940d9e30b07294ed766b to your computer and use it in GitHub Desktop.
wget from list of files
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 url filename; do wget -O "$filename" "$url"; done < /tmp/urls_and_filenames.txt |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
apt-get install parallel