Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. #!/bin/bash
  2. for (( i=0; i<=960; i=$((i+20)) )) ; do
  3.     for link in $(wget "http://yume.booru.org/index.php?page=post&s=list&tags=all&pid=$i" -O - "$@" \
  4.     | egrep -o 'thumbnail_[a-zA-Z0-9]*.(jpg|png|gif|jpeg)' | sed 's/thumbnail_//g')
  5.     do
  6.         wget -nc http://img.booru.org/yume//images/1/$link
  7.     done
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement