xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
examples
/
awk
/
t.avg
(revision 8d55b80625b903a8ec6c560f6a38b5c16d1f5cfc)
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