XML_GREPSection: User Contributed Perl Documentation (1)Updated: 2003-10-02 |
XML_GREPSection: User Contributed Perl Documentation (1)Updated: 2003-10-02 |
xml_grep [options] <file list>
or
xml_grep <xpath expression> <file list>
By default you can just give "xml_grep" an XPath expression and a list of files, and get an XML file with the result.
This is equivalent to writing
xml_grep --group_by_file file --pretty_print indented --cond <file list>
if neither "--root" nor "--file" are used then the element(s) that trigger the "--cond" option is (are) used. If "--cond" is not used then all elements matching the <cond> are returned
several "--root" can be provided
several "--cond" can be provided (in which case they are OR'ed)
usage of this option precludes using any of the options that define the XML output: "--roots", "--encoding", "--wrap", "--group_by_file" or "--pretty_print"
usage of this option precludes using any of the options that define the XML output: "--roots", "--encoding", "--wrap", "--group_by_file" or "--pretty_print"
with "--nodate" this attribute is not added, which can be useful if you need to compare 2 runs.
If wrap is set to an empty string ("--wrap ''") then the xml result is not wrapped at all.
the short version of this option is -g
if the option is used but no style is given then '"indented"' is used
short form for this arggument is -s
exemples:
'para'
'para[@compact=``compact'']'
'*[@urgent]'
'*[@urgent=``1'']'
'para[string()=``WARNING'']'
see XML::Twig for a more complete description of the <cond> syntax
options are processedby Getopt::Long so they can start with '-' or '--' and can be abbreviated (-r instead of --root for example)
the results can be the names of the files or XML elements containing matching elements.