newsstats/contrib/yearstats.sh
Thomas Hochstein 333013e7bb Update yearstats for 2026.
Signed-off-by: Thomas Hochstein <thh@thh.name>
2026-01-08 23:46:21 +01:00

11 lines
243 B
Bash
Executable file

#!/bin/bash
# installation path is /opt/newsstats/, please adjust accordingly
# $1: newsgroup
echo "Stats for $1"
cd /opt/newsstats/
for year in {2016..2026}
do
echo -n "${year}: "
bin/groupstats.pl -m $year-01:$year-12 -r sums -n $1
done