xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
examples
/
awk
/
t.avg
(revision 6a8fa7ea16d9870b21c82af67a2053cb47ed1fb4)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
{s = s + $1; c = c + 1}
2
END {
3
print "sum=", s, " count=", c
4
print "avg=", s/c
5
}
6