Created
May 16, 2012 15:54
-
-
Save JakubOboza/2711542 to your computer and use it in GitHub Desktop.
one line google search
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
require 'mechanize'; Mechanize.new.get('http://google.com/') do |p|; sr = p.form_with(:name => 'f') do |s|; s.q = ARGV[0]; end.submit; sr.links.each do |l|; puts l.text + ":" + l.href; end; end; |
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
ruby mech.rb "hello world" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yay Ruby!!