aboutsummaryrefslogblamecommitdiff
path: root/bin/tot.awk
blob: c25c718d30e45d349497322b83afcf49a34f29c3 (plain) (tree)
1
2
3


                            
# Total a column of integers
{ tot += $1 }
END { printf "%u\n", tot }