I\'m looking for a way to turn this:
hello < world
to this:
I could use sed, but
A python 3.2+ version:
cat foo.html | python3 -c 'import html, sys; [print(html.unescape(l), end="") for l in sys.stdin]'