#!/bin/csh
foreach i ( `cat list` )
echo to: $i > tmp
cat message.asc >> tmp
/usr/lib/sendmail $i < tmp
rm tmp
echo $i
sleep 5
end
