Advertisement
Guest User

Untitled

a guest
Feb 17th, 2012
588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.31 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # 4chan download script. Use it to download images in a thread
  4. # Usage: ./script http://boards.4chan.org/wg/thread
  5.  
  6. SAVE_DIR="~/Pictures"
  7. APPROVED_EXTS="jpg,png,jpeg"
  8.  
  9. wget -q -e robots=off -E -c -nd -nc -np -r -H -Dimages.4chan.org -Rhtml \
  10.      -A $APPROVED_EXTS --directory-prefix=$SAVE_DIR $1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement