summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/stats/calc.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/stats/calc.sh b/scripts/stats/calc.sh
index 66732cb..85e5e85 100755
--- a/scripts/stats/calc.sh
+++ b/scripts/stats/calc.sh
@@ -17,18 +17,22 @@ perl='
ls=`ls *.log`
cat << STATS | less
-Weekly top 15:
+Weekly top list:
`echo "$ls" | tail -n 7 | xargs cat | perl -e "$perl"`
-Monthly top ten:
+Monthly top list:
`echo "$ls" | tail -n 28 | xargs cat | perl -e "$perl"`
-Yearly top ten:
+Yearly top list:
`echo "$ls" | tail -n 356 | xargs cat | perl -e "$perl"`
+Forever top list:
+
+`echo "$ls" | xargs cat | perl -e "$perl"`
+
This stats are powered by Perl, GNU AWK and Bourne Shell
STATS