DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
HTML Entities - Decoding - Perl One-liner
// Perl one-liner to expand HTML entities like &
perl -i.bak -pe "BEGIN { use HTML::Entities;} HTML::Entities::decode($_); " filename




