Created
July 29, 2013 20:25
-
-
Save wiesson/6107496 to your computer and use it in GitHub Desktop.
batch download for consecutively numbered 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
for i in {1..31}; do if [ $i -le 9 ] ; then curl -O ##LINK##0$i.pdf ; else curl -O ##LINK##$i.pdf; fi ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment