hok00age

FCM Downloader

May 5th, 2013
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.33 KB | None | 0 0
  1. #!/bin/bash
  2. echo -n "First issue you want to download? "
  3. read firstissue
  4.  
  5. echo ""
  6. echo -n "The last issue you want to download? (equal or greater than the first issue) "
  7. read lastissue
  8.  
  9. for a in `seq $firstissue $lastissue`
  10.     do
  11.         wget -U Mozilla "http://dl.fullcirclemagazine.org/issue"$a"_en.pdf"
  12.     done
  13.  
  14. echo "Done!"
Add Comment
Please, Sign In to add comment