Created
September 25, 2012 19:17
-
-
Save brettkelly/3783860 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
from urllib import urlencode | |
param = '%clipboard'.strip() | |
rooturl = "http://lmgtfy.com/?" | |
try: | |
qs = urlencode({'q':param}) | |
except: | |
qs = '' | |
finally: | |
sys.stdout.write("%s%s" % (rooturl, qs)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment