DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Quickly Start A Search On Google From The Command Line
Simply starts a search of Google from the command line:
example: gs duncan robertson
#!/usr/bin/env ruby
require 'cgi'
`open "http://www.google.co.uk/search?q=#{CGI.escape(ARGV.join(' '))}"`





