xmlstarlet
all
A XML/XSLT toolkit. Note: You will likely need to know XPath: <https://developer.mozilla.org/en-US/docs/Web/XPath>.
More info →Examples (8)
Format an XML document and print to `stdout`
xmlstarlet format path/to/file.xmlXML document can also be piped from `stdin`
cat path/to/file.xml | xmlstarlet formatPrint all nodes that match a given XPath
xmlstarlet select --template --copy-of xpath path/to/file.xmlInsert an attribute to all matching nodes, and print to `stdout` (source file is unchanged)
xmlstarlet edit --insert xpath --type attr --name attribute_name --value attribute_value path/to/file.xmlUpdate the value of all matching nodes in place (source file is changed)
xmlstarlet edit --inplace --update xpath --value new_value file.xmlDelete all matching nodes in place (source file is changed)
xmlstarlet edit --inplace --delete xpath file.xmlEscape or unescape special XML characters in a given string
xmlstarlet [un]escape stringList a given directory as XML (omit argument to list current directory)
xmlstarlet ls path/to/directorymade by @shridhargupta | data from tldr-pages