scrape.sh (260B)
1 #!/bin/sh 2 # See LICENSE file for copyright and license details. 3 4 first=1 5 last=46267 6 7 for i in $(seq "$first" "$last"); do 8 u="$(wget -qO- "https://f0ck.me/$i" | grep -Eo 'src="/b/[^ ]*' \ 9 | sed -e 's/src=//' | tr -d '"')" 10 wget -c "https://f0ck.me${u}" 11 done