summaryrefslogtreecommitdiff
path: root/nocompile/bin/decode_html_entities
blob: dea945ae624e021518e9b643f36c52e124b655ec (plain) (blame)
1
2
3
4
5
#!/bin/sh
sed "s/\>/>/g" \
 | sed "s/\&lt;/</g" \
 | sed 's/\&quot;/"/g' \
 | sed "s/\&amp;/\&/g"