List the number of members in all Mailman lists
Posted in Geekery on May 21st, 2010
Here’s a little bash script to display the name of all lists in your mailman site and the number of subscribers for each list, just run it in the same directory as your mailman binaries (/usr/lib/mailman/bin on Debian): 123456#!/bin/bash LISTS=$((`./list_lists | wc -l` – 1)) LISTS=`./list_lists | tail -n$LISTS | awk ‘{ print $1 }’` [...]
