Skip to content

Instantly share code, notes, and snippets.

@brettkelly
Created September 25, 2012 19:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brettkelly/3783860 to your computer and use it in GitHub Desktop.
Save brettkelly/3783860 to your computer and use it in GitHub Desktop.
#!/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