Forrest logo
back to context overview

xml-select

List of commands for xml-select:

  • xml-select:tldr:39b37 xml-select: Count all nodes in one or more XML documents.
    $ xml select --text --template --inp-name --output " " --value-of "count(node())" --nl ${select} ${select1}
    try on your machine
    explain this command
  • xml-select:tldr:746fd xml-select: Match "XPATH1" and print the value of "XPATH2" as text with new-lines.
    $ xml select --text --template --match "${XPATH1}" --value-of "${XPATH2}" --nl ${select}
    try on your machine
    explain this command
  • xml-select:tldr:a8d0c xml-select: Display help for the `select` subcommand.
    $ xml select --help
    try on your machine
    explain this command
  • xml-select:tldr:c8ca0 xml-select: Select all elements matching "XPATH1" and print the value of their sub-element "XPATH2".
    $ xml select --template --match "${XPATH1}" --value-of "${XPATH2}" ${select}
    try on your machine
    explain this command
  • xml-select:tldr:cb297 xml-select: Count the elements of "XPATH1".
    $ xml select --template --value-of "count(${XPATH1})" ${select}
    try on your machine
    explain this command
back to context overview