Skip to content

Instantly share code, notes, and snippets.

@JakubOboza
Created May 16, 2012 15:54
Show Gist options
  • Save JakubOboza/2711542 to your computer and use it in GitHub Desktop.
Save JakubOboza/2711542 to your computer and use it in GitHub Desktop.
one line google search
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;
ruby mech.rb "hello world"
@loveybot
Copy link

Yay Ruby!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment