aboutsummaryrefslogtreecommitdiff
path: root/bin/tot.awk
blob: d1174d7bbfe0277fd717526e743b022338f5bd79 (plain) (blame)
1
2
3
# Total a column of integers
{ tot += $1 }
END { print tot }