Skip to content

Instantly share code, notes, and snippets.

@thecrogers
Created March 1, 2017 21:22
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 thecrogers/59f949527de21a86c980156263ac49da to your computer and use it in GitHub Desktop.
Save thecrogers/59f949527de21a86c980156263ac49da to your computer and use it in GitHub Desktop.
#!/bin/bash
count=1
while read p; do
curl $p -o "folder/file$count.pdf"
count=$((count+1))
done <fileIn.txt
@thecrogers
Copy link
Author

allows for a file to be read of space separated URI's to be downloaded.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment