Guest User

keygenjukebox.com downloader

a guest
Jan 3rd, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.40 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. files=`links -source http://www.keygenjukebox.com | awk '
  4. {
  5.        pos = match($0, /option value="([^"]+)"/, val)
  6.        while (pos > 0) {
  7.                print val[1]
  8.                from += pos + val[0, "length"]
  9.                pos = match(substr($0, from), /option value="([^"]+)"/, val)
  10.        }
  11. }' -`
  12.  
  13. for fn in $files
  14. do
  15.         wget -N "http://www.keygenjukebox.com/m/$fn"
  16. done
Add Comment
Please, Sign In to add comment