Skip to content

Instantly share code, notes, and snippets.

@Muzietto
Created January 26, 2019 19:00
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 Muzietto/9b09e147a91cfd89298b3b6c3b25b479 to your computer and use it in GitHub Desktop.
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)
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