Advertisement
dancewtd

Untitled

Mar 24th, 2014
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.16 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. echo -n  "What sites do you want to download? "
  4. read sites
  5.  
  6. for site in sites; do
  7.     wget -erobots=off -r -A pdf -R "index.html*" $sites
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement