>ow btw, how do u send email to all users in ur system w/o having to type all
>their user names ? i use exim also ...
>chad
$ edit message_in_file
$ for person in `cat /etc/passwd | awk -F ':' '{if ($3 >= 1000) print $1}'` do
> mail -s "subject here" $person < message_in_file;
> done
$ rm message_in_file
Carl