bragi (owner)

Revisions

  • 096068 Fri Oct 31 07:21:40 -0700 2008
gist: 21315 Download_button fork
public
Public Clone URL: git://gist.github.com/21315.git
Embed All Files: show embed
htmlgrep.rb #
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/ruby
 
require 'rubygems'
require 'hpricot'
require 'open-uri'
 
file = open(ARGV[1]) if ARGV[1]
file ||= STDIN
doc = Hpricot(file)
puts doc / ARGV[0]