Quoting Peter Green <[EMAIL PROTECTED]>:
> * Bill Shupp <[EMAIL PROTECTED]> [010212 15:54]:
> > After creating the list, you can use ezmlm-sub (part of
> the ezmlm
> > package) to add users to the list. A simple shell
> script could
> > read all your addresses from the text file and add them
> to your
> > new mailing list, such as:
> >
> > #!/bin/bash
> >
> > for in `cat textfilewithaddresses` ; do
>
> That should be, of course:
>
> for i in `cat textfilewithaddresses` ; do
> [...]
Oops, sorry. Thanks Peter.
> However, you should just be able to do:
>
> # idx version >= 0.40
> ezmlm-sub /path/to/list/dir/ < textfilewithaddresses
> # idx version < 0.40
> xargs ezmlm-sub /path/to/list/dir/ <
> textfilewithaddresses
This is simpler, anyway. And less room for typos!
-Bill