Additions:
[[Commands]]
Additions:
||expr||an XPath expression to search||
||[files] ||List of files to search||
||[files] ||List of files to search||
Deletions:
[files] - List of files to search
Additions:
xgrep '//foo' *.xml
Deletions:
Deletions:
No Differences
Additions:
======Command xgrep======
xgrep expr [files]
expr - an XPath expression to search
[files] - List of files to search
xgrep parses each xml file given and if it contains a node which matches the xpath expression (expr) prints the filename of the matching file.
$ xgrep '//foo' *.xml
xgrep expr [files]
expr - an XPath expression to search
[files] - List of files to search
xgrep parses each xml file given and if it contains a node which matches the xpath expression (expr) prints the filename of the matching file.
$ xgrep '//foo' *.xml
Deletions:
Additions:
xgrep [options] [files]