mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 19:42:08 +02:00
16 lines
355 B
Markdown
16 lines
355 B
Markdown
# xml unescape
|
|
|
|
> Unescape special XML characters, e.g. `<a1>` → `<a1>`.
|
|
> More information: <https://xmlstar.sourceforge.net/docs.php>.
|
|
|
|
- Unescape special XML characters from a string:
|
|
|
|
`xml unescape "{{<a1>}}"`
|
|
|
|
- Unescape special XML characters from `stdin`:
|
|
|
|
`echo "{{<a1>}}" | xml unescape`
|
|
|
|
- Display help:
|
|
|
|
`xml escape --help`
|