aboutsummaryrefslogtreecommitdiff
path: root/bin/mean.awk
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-10-25 11:11:30 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-10-25 11:12:46 +1300
commitf530a5fea7d733ef996fd6ba815d318af06094f0 (patch)
tree9a99fcc1a372a2c015d81f771295fb825b50a0a6 /bin/mean.awk
parentRestore missing header to maybe(1df) manual (diff)
downloaddotfiles-f530a5fea7d733ef996fd6ba815d318af06094f0.tar.gz
dotfiles-f530a5fea7d733ef996fd6ba815d318af06094f0.zip
Corrections to a few of the agg scripts
Diffstat (limited to 'bin/mean.awk')
-rw-r--r--bin/mean.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mean.awk b/bin/mean.awk
index 74bdcab3..b34dc111 100644
--- a/bin/mean.awk
+++ b/bin/mean.awk
@@ -1,4 +1,4 @@
-# Get the mean of a list of integers
+# Get the mean of a list of numbers
{ tot += $1 }
END {
# Error out if we read no values at all