]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/google.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Tools / scripts / google.py
1 #! /usr/bin/env python
2
3 import sys, webbrowser
4
5 def main():
6 args = sys.argv[1:]
7 if not args:
8 print "Usage: %s querystring" % sys.argv[0]
9 return
10 list = []
11 for arg in args:
12 if '+' in arg:
13 arg = arg.replace('+', '%2B')
14 if ' ' in arg:
15 arg = '"%s"' % arg
16 arg = arg.replace(' ', '+')
17 list.append(arg)
18 s = '+'.join(list)
19 url = "http://www.google.com/search?q=%s" % s
20 webbrowser.open(url)
21
22 if __name__ == '__main__':
23 main()