index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
/
sortfor.awk
blob: f61200da6fcc3bdc01874f74e9159bf84de968ad (
plain
)
1
2
3
4
5
6
7
8
BEGIN
{
PROCINFO
[
"sorted_in"
]
=
1
}
{
a
[
$0
]++
}
END
{
for
(
i
in
a
)
print
i
}