Re: [Mailman-Users] Output to file all lists and associated member addresses

2006-09-20 Thread Patrick Bogen
On 9/20/06, Bill Landry <[EMAIL PROTECTED]> wrote: > Thanks Patrick! This worked perfectly: > > for i in `bin/list_lists -b`; do echo $i >> master-list.txt; > bin/list_members $i >> master-list.txt; echo >> master-list.txt; done You could also do: { for i in `bin/list_lists -b`;do echo $i; bin/l

Re: [Mailman-Users] Output to file all lists and associated member addresses

2006-09-20 Thread Bill Landry
- Original Message - From: "Patrick Bogen" <[EMAIL PROTECTED]> > On 9/20/06, Bill Landry <[EMAIL PROTECTED]> wrote: >> Thanks Patrick, that certainly gives me a listing of all of the member >> e-mail address for every list, but does not associate them with the >> particular list they appl

Re: [Mailman-Users] Output to file all lists and associated member addresses

2006-09-20 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sep 20, 2006, at 10:35 AM, Bill Landry wrote: > Thanks Patrick, that certainly gives me a listing of all of the member > e-mail address for every list, but does not associate them with the > particular list they apply to. I was looking for an outp

Re: [Mailman-Users] Output to file all lists and associated member addresses

2006-09-20 Thread Patrick Bogen
On 9/20/06, Bill Landry <[EMAIL PROTECTED]> wrote: > Thanks Patrick, that certainly gives me a listing of all of the member > e-mail address for every list, but does not associate them with the > particular list they apply to. I was looking for an output like: > > List-A > e-mail-1 > e-mail-2 > e-

Re: [Mailman-Users] Output to file all lists and associated member addresses

2006-09-20 Thread Bill Landry
- Original Message - From: "Patrick Bogen" <[EMAIL PROTECTED]> > On 9/20/06, Bill Landry <[EMAIL PROTECTED]> wrote: >> Is there a simple way to output to a file all lists with each lists >> associated member addresses? I know I can use: >> > snip >> >> for each list, but is there a way t

Re: [Mailman-Users] Output to file all lists and associated member addresses

2006-09-20 Thread Patrick Bogen
On 9/20/06, Bill Landry <[EMAIL PROTECTED]> wrote: > Is there a simple way to output to a file all lists with each lists > associated member addresses? I know I can use: > snip > > for each list, but is there a way to do this in one fell swoop, without > having to run through each member list indi

[Mailman-Users] Output to file all lists and associated member addresses

2006-09-20 Thread Bill Landry
Is there a simple way to output to a file all lists with each lists associated member addresses? I know I can use: bin/list_lists -b and then: bin/list_members list-name for each list, but is there a way to do this in one fell swoop, without having to run through each member list ind