BSD 4_4 development
[unix-history] / usr / src / old / awk / test / t.time
BEGIN {
FS = "-"
}
/ing$/ {
n++
s += length($NF)
print
}
END {
print n, s, s/n >"glop"
}