Skip to content

Instantly share code, notes, and snippets.

@jbuda
Created October 19, 2013 21:36
Show Gist options
  • Save jbuda/7061879 to your computer and use it in GitHub Desktop.
Save jbuda/7061879 to your computer and use it in GitHub Desktop.
Ruby - Day 2 - Seven Languages in Seven Weeks
f = File.open("moon_wiki.txt")
f.each do |line|
if (line.grep(/moon/i).length > 0)
puts "Match on line #{f.lineno} - #{line}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment