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
- 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
-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
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-
- 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
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
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