1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 01:22:08 +02:00
tldr/pages/common/xml-unescape.md
2021-08-24 21:50:43 +01:00

16 lines
383 B
Markdown

# xml unescape
> Unescape special XML characters, e.g. `&lt;a1&gt;` → `<a1>`.
> More information: <http://xmlstar.sourceforge.net/docs.php>.
- Unescape special XML characters from a string:
`xml unescape "{{&lt;a1&gt;}}"`
- Unescape special XML characters from stdin:
`echo "{{&lt;a1&gt;}}" | xml unescape`
- Display help for the `unescape` subcommand:
`xml escape --help`