Harold Pritchett wrote:
> How do I list all of the members of all of my lists.

Hello,
I use this script to get a list of all lists and all members:

#! /bin/sh
for i in `/usr/local/mailman/bin/list_lists | tail +2 | awk '{print
$1}'`; do \
  for j in `/usr/local/mailman/bin/list_members $i`; do \
    echo $i, $j; \
  done; \
done


-- 
Martin

------------------------------------------------------
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to