Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- url="$1"
- agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0"
- #wget "$url" -O-|zcat|sed 's/"/\n/g' |grep userscloud|while read link
- wget "$url" -O-|sed 's/"/\n/g' |grep userscloud|while read link
- do
- parm="$(wget "$link" -O-|grep -i -A 3 "^<form"|tail -n3|awk -F '"' '{print $4 "=" $6}'|tr '\n' '&')"
- wget -c --user-agent="$agent" "$link" --post-data="$parm"
- done
- comic2html
Add Comment
Please, Sign In to add comment