You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
BEGIN {
|
|
FS = "-"
|
|
}
|
|
/sh$/ {
|
|
n++
|
|
l = length($NF)
|
|
s += l
|
|
ck %= l
|
|
totck += ck
|
|
print
|
|
}
|
|
END {
|
|
if (n > 0) {
|
|
printf "%d %d %d %fn\n", totck, n, s, s/n
|
|
}
|
|
else
|
|
print "n is zero"
|
|
}
|