brendano (owner)

Revisions

gist: 5351 Download_button fork
public
Description:
htmlunescape
Public Clone URL: git://gist.github.com/5351.git
htmlunescape.pl
1
2
3
4
5
6
7
8
9
#!/usr/bin/env perl
 
while(<>) {
  s/&lt;/</g;
  s/&gt;/>/g;
  s/&amp;/&/g;
  print $_;
}