* 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
  [...]

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

:-)

/pg
-- 
Peter Green : Gospel Communications Network, SysAdmin : [EMAIL PROTECTED]
---
But you have to allow a little for the desire to evangelize when
you think you have good news.
--- Larry Wall in <[EMAIL PROTECTED]>

Reply via email to