Grep and Sed Equivalent for XML Command Line Processing - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T04:09:10Zhttp://stackoverflow.com/feeds/question/91791http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing6Grep and Sed Equivalent for XML Command Line ProcessingJoseph Holsten2008-09-18T11:36:58Z2009-07-17T23:28:56Z
<p>When doing shell scripting, typically data will be in files of single line records like csv. It's really simple to handle this data with <code>grep</code> and <code>sed</code>. But I have to deal with XML often, so I'd really like a way to script access to that XML data via the command line. What are the best tools?</p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/91801#918012Answer by Joseph Holsten for Grep and Sed Equivalent for XML Command Line ProcessingJoseph Holsten2008-09-18T11:39:59Z2009-07-17T23:28:56Z<p>At the moment, the best solution I've found is <a href="http://code.whytheluckystiff.net/hpricot/" rel="nofollow" title="_why's XML/HTML parsing for ruby">hpricot</a>, which provides
XPath & CSS selectors and a DOM. But it's only available in ruby, so I can't
easily use it in a shell script.</p>
<p><strong>EDIT</strong>
I've found some more promising tools:</p>
<ul>
<li><p><a href="http://www2.in.tum.de/~berlea/Fxgrep/" rel="nofollow" title="Functional XML Querying Tool">fxgrep</a>:
Uses its own XPath-like syntax to query documents. Written in SML, so
installation may be difficult.</p></li>
<li><p><a href="http://www.ltg.ed.ac.uk/software/ltxml" rel="nofollow" title="LT XML toolkit">LT XML</a>:
XML toolkit derived from SGML tools, including <code>sggrep</code>, <code>sgsort</code>,
<code>xmlnorm</code> and others. Uses its own query syntax. The documentation is
<em>very</em> formal. Written in C. LT XML 2 claims support of XPath, XInclude
and other W3C standards.</p></li>
<li><p><a href="http://xmltwig.com/tool/xml%5Fgrep2/xml%5Fgrep2.html" rel="nofollow">xmlgrep2</a>:
simple and powerful searching with XPath. Written in Perl using
XML::LibXML and libxml2.</p></li>
<li><p><a href="http://www.xqsharp.com/xqsharp/" rel="nofollow">XQSharp</a>:
Supports XQuery, the extension to XPath. Written for the .NET Framework.</p></li>
<li><p><a href="http://www.lbreyer.com/xml-coreutils.html" rel="nofollow">xml-coreutils</a>:
Laird Breyer's toolkit equivalent to GNU coreutils. Discussed in an
interesting <a href="http://www.lbreyer.com/unix%5Fxml-1.html" rel="nofollow">essay</a> on what the ideal toolkit should include.</p></li>
<li><p><a href="http://www.logilab.org/859/" rel="nofollow">xmldiff</a>:
Simple tool for comparing two xml files.</p></li>
</ul>
<p>I haven't had a chance to try any of these, but xml-coreutils seems the best documented and most unix oriented.</p>
<p><strong>FURTHER EDIT</strong></p>
<p>I've removed <a href="http://xmltk.sourceforge.net/" rel="nofollow">xmltk</a> from this list. It doesn't seem to have package in debian, ubuntu, fedora, or macports. It also hasn't had a release since 2007, and uses non-portable build automation. I can't recommend it unless it becomes more portable.</p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/91832#918320Answer by Ben for Grep and Sed Equivalent for XML Command Line ProcessingBen2008-09-18T11:47:15Z2008-09-18T11:47:15Z<p>JEdit has a plugin called "XQuery" which provides querying functionality for XML documents.</p>
<p>Not quite the command line, but it works!</p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/91955#919550Answer by ΤΖΩΤΖΙΟΥ for Grep and Sed Equivalent for XML Command Line ProcessingΤΖΩΤΖΙΟΥ2008-09-18T12:12:47Z2008-09-18T12:12:47Z<p>Decide on what operations you want to do on XML files and create a script (in Python, Perl perhaps) that exposes that functionality through arguments for shell scripts to use.</p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/91966#919669Answer by Russ for Grep and Sed Equivalent for XML Command Line ProcessingRuss2008-09-18T12:14:07Z2008-09-18T12:14:07Z<p>I've found xmlstarlet to be pretty good at this sort of thing. </p>
<p><a href="http://xmlstar.sourceforge.net/" rel="nofollow">http://xmlstar.sourceforge.net/</a></p>
<p>Should be available in most distro repositories, too. An introductory tutorial is here:</p>
<p><a href="http://www.ibm.com/developerworks/library/x-starlet.html" rel="nofollow">http://www.ibm.com/developerworks/library/x-starlet.html</a></p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/96716#967161Answer by Adrian Mouat for Grep and Sed Equivalent for XML Command Line ProcessingAdrian Mouat2008-09-18T20:41:16Z2008-09-18T20:41:16Z<p>Depends on exactly what you want to do.</p>
<p>XSLT may be the way to go, but there is a learning curve. Try <a href="http://xmlsoft.org/XSLT/xsltproc.html" rel="nofollow">xsltproc</a> and note that you can hand in parameters.</p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/252108#2521081Answer by Oliver Hallam for Grep and Sed Equivalent for XML Command Line ProcessingOliver Hallam2008-10-30T23:12:49Z2009-03-03T20:59:32Z<p>XQuery might be a good solution. It is (relatively) easy to learn and is a W3C standard.</p>
<p>I would recommend <a href="http://www.xqsharp.com" rel="nofollow">XQSharp</a> for a command line processor.</p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/609667#6096672Answer by bortzmeyer for Grep and Sed Equivalent for XML Command Line Processingbortzmeyer2009-03-04T08:12:52Z2009-03-04T08:12:52Z<p>To Joseph Holsten's excellent list, I add the xpath command-line script which comes with Perl library XML::XPath. A great way to extract information from XML files:</p>
<pre><code> xpath -q -e '/entry[@xml:lang="fr"]' *xml
</code></pre>