Created
January 26, 2019 19:00
-
-
Save Muzietto/9b09e147a91cfd89298b3b6c3b25b479 to your computer and use it in GitHub Desktop.
Shellscript to read urls from a text file and download them one after the other (with some rest in between)
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.txt | while read url; do wget -mpEkL "$url"; sleep 2; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment