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
std.c: Improve some comments
[sunny256-utils.git]
/
h2t
blob
e4126bcdd6a06b63029341f8cda449f74e635a60
1
#!/usr/bin/env perl
2
3
# h2t
4
# File ID: d9427848-5d3a-11df-82ef-90e6ba3022ac
5
6
use
strict
;
7
use
warnings
;
8
9
while
(<>) {
10
s/</</g
;
11
s/>/>/g
;
12
s/&/&/g
;
13
print
;
14
}