repo.or.cz
/
sunny256-utils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Delete obsolete Unicode version 15.1.0
[sunny256-utils.git]
/
t2h
blob
693df9ed94cbb0d83cf62d92cecf97404ccb1cdb
1
#!/usr/bin/env perl
2
3
# t2h
4
# File ID: 099f1bbc-5d46-11df-bb8a-90e6ba3022ac
5
6
use
strict
;
7
use
warnings
;
8
9
while
(<>) {
10
s/&/&/g
;
11
s/</</g
;
12
s/>/>/g
;
13
print
;
14
}