LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

xml-unescape

Decode XML entities to characters

TLDR

Unescape XML entities in a string
$ xml unescape "[<text>]"
copy
Unescape XML entities from stdin
$ echo "[<text>]" | xml unescape
copy
Using the short alias
$ xml unesc "[<text>]"
copy

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 < > & ' " 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

Copied to clipboard
Kai