LinuxCommandLibrary

xml-unescape

Unescape special XML characters, e.g. `&lt;a1&gt;` → `<a1>`.

TLDR

Unescape special XML characters from a string

$ xml unescape "[<a1>]"
copy


Unescape special XML characters from stdin
$ echo "[<a1>]" | xml unescape
copy


Display help for the unescape subcommand
$ xml escape --help
copy

Copied to clipboard