aboutsummaryrefslogtreecommitdiff
path: root/bin/mean.awk
blob: 4506b3b00885c04db9a1279688d39da598b70a89 (plain) (blame)
1
2
3
4
5
6
7
8
# Get the mean of a list of integers
{ tot += $1 }
END {
    # Error out if we read no values at all
    if (!NR)
        exit(1)
    printf "%u\n", tot / NR
}