xref
: /
netbsd-src
/
external
/
historical
/
nawk
/
dist
/
testdir
/
tt.06
(revision 8c5fe5c1e4abd9106f7eec3f829c22d3c5cb31fe)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
{
2
x[$1] += length
3
}
4
END {
5
for (i in x)
6
print i, x[i] | "sort"
7
}
8