Skip to content

Instantly share code, notes, and snippets.

@janfri
Created March 2, 2018 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janfri/93a0de35cbb2057a7834f420b36861b8 to your computer and use it in GitHub Desktop.
Save janfri/93a0de35cbb2057a7834f420b36861b8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# encoding: utf-8
require 'nokogiri'
query = ARGV.shift
ARGV.each do |fn|
doc = Nokogiri::XML(File.read(fn))
puts doc.search(query)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment