Git/suuid/: New commits
[sunny256-utils.git] / t2h
blob693df9ed94cbb0d83cf62d92cecf97404ccb1cdb
1 #!/usr/bin/env perl
3 # t2h
4 # File ID: 099f1bbc-5d46-11df-bb8a-90e6ba3022ac
6 use strict;
7 use warnings;
9 while (<>) {
10 s/&/&amp;/g;
11 s/</&lt;/g;
12 s/>/&gt;/g;
13 print;