Skip to content

Instantly share code, notes, and snippets.

@Eckankar
Created June 23, 2010 17:41
Show Gist options
  • Save Eckankar/450267 to your computer and use it in GitHub Desktop.
Save Eckankar/450267 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import urllib
print "\n"
file = open('prank.sh', 'w')
webfile = urllib.urlopen('http://github.com/Eckankar/prank-script/raw/master/prank.sh')
file.write(webfile.read())
file.close()
webfile.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment