Skip to content

Instantly share code, notes, and snippets.

@Famicoman
Created October 7, 2012 19:00
Show Gist options
  • Save Famicoman/3849241 to your computer and use it in GitHub Desktop.
Save Famicoman/3849241 to your computer and use it in GitHub Desktop.
ThePirateBay User Magnet Link Ripper
#!/bin/bash
#Rips all the magnet links for a TPB User
#Usage: ./tpb-ripper.sh $user $numpages
#Where $user is the user and $numpages is the # pages for their profile
for i in {0..$2}
do
curl "http://thepiratebay.se/user/$1/$i/3" | grep -o 'magnet.*\0"' | sed 's/\(.*\)./\1/'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment