1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 09:35:23 +02:00
tldr/pages/common/xml-select.md

26 lines
1.1 KiB
Markdown
Raw Normal View History

# xml select
> Select from XML documents using XPATHs.
> Tip: use `xml elements` to display the XPATHs of an XML document.
2025-05-11 21:14:19 +03:00
> More information: <https://xmlstar.sourceforge.net/doc/UG/xmlstarlet-ug.html#idm47077139652416>.
2021-08-24 14:57:47 -04:00
- Select all elements matching "XPATH1" and print the value of their sub-element "XPATH2":
2025-05-11 21:14:19 +03:00
`xml {{[sel|select]}} {{[-t|--template]}} {{[-m|--match]}} "{{XPATH1}}" {{[-v|--value-of]}} "{{XPATH2}}" {{path/to/input.xml|URI}}`
2023-06-14 17:32:31 +02:00
- Match "XPATH1" and print the value of "XPATH2" as text with new-lines:
2025-05-11 21:14:19 +03:00
`xml {{[sel|select]}} {{[-T|--text]}} {{[-t|--template]}} {{[-m|--match]}} "{{XPATH1}}" {{[-v|--value-of]}} "{{XPATH2}}" {{[-n|--nl]}} {{path/to/input.xml|URI}}`
- Count the elements of "XPATH1":
2025-05-11 21:14:19 +03:00
`xml {{[sel|select]}} {{[-t|--template]}} {{[-v|--value-of]}} "count({{XPATH1}})" {{path/to/input.xml|URI}}`
2021-08-23 21:20:17 -04:00
- Count all nodes in one or more XML documents:
2025-05-11 21:14:19 +03:00
`xml {{[sel|select]}} {{[-T|--text]}} {{[-t|--template]}} {{[-f|--inp-name]}} {{[-o|--output]}} " " {{[-v|--value-of]}} "count(node())" {{[-n|--nl]}} {{path/to/input1.xml|URI}} {{path/to/input2.xml|URI}}`
- Display help:
2025-05-11 21:14:19 +03:00
`xml {{[sel|select]}} --help`