xref: /netbsd-src/external/historical/nawk/dist/testdir/tt.06 (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1{
2	x[$1] += length
3}
4END {
5	for (i in x)
6		print i, x[i] | "sort"
7}
8