Skip to content

Instantly share code, notes, and snippets.

@gglanzani
Created August 22, 2012 15:24
Show Gist options
  • Save gglanzani/3426749 to your computer and use it in GitHub Desktop.
Save gglanzani/3426749 to your computer and use it in GitHub Desktop.
Shell script to open the Pirate Bay in your default browser
#!/bin/sh
foo=$(curl -s http://elite.so/tpp/proxy.txt | grep org | grep www | awk '/org/{print $2}')
foo="http://"$foo
open $foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment