xml-unescape
Decode XML entities to characters
TLDR
Unescape XML entities in a string
$ xml unescape "[<text>]"
Unescape XML entities from stdin$ echo "[<text>]" | xml unescape
Using the short alias$ xml unesc "[<text>]"
SYNOPSIS
xml unescape [options] [text]
DESCRIPTION
xml unescape (also `xml unesc`) converts XML entities back to their original characters. Part of the XMLStarlet toolkit. Decodes &lt; &gt; &amp; &apos; &quot; and numeric character references to their original characters.
PARAMETERS
text
Text with XML entities. If not provided, reads from standard input.--help
Display usage information.
SEE ALSO
xml-escape(1), xml-select(1), xmlstarlet(1)
