Forrest logo
back to context overview

xml-elements

List of commands for xml-elements:

  • xml-elements:tldr:48d1e xml-elements: Print sorted unique elements from an XML document up to a depth of 3.
    $ xml elements -d${3} ${select}
    try on your machine
    explain this command
  • xml-elements:tldr:49b86 xml-elements: Extract elements from an XML document (producing XPATH expressions).
    $ xml elements ${select} > ${path-to-elements-xpath}
    try on your machine
    explain this command
  • xml-elements:tldr:82092 xml-elements: Print sorted unique elements from an XML document to see its structure.
    $ xml elements -u ${select}
    try on your machine
    explain this command
  • xml-elements:tldr:9c395 xml-elements: Extract elements and their attributes from an XML document.
    $ xml elements -a ${select} > ${path-to-elements-xpath}
    try on your machine
    explain this command
  • xml-elements:tldr:cf666 xml-elements: Display help for the `elements` subcommand.
    $ xml elements --help
    try on your machine
    explain this command
  • xml-elements:tldr:d785b xml-elements: Extract elements and their attributes and values from an XML document.
    $ xml elements -v ${select} > ${path-to-elements-xpath}
    try on your machine
    explain this command
back to context overview