Hello All,
I have script wherein I am sending an email with multiple attachments. If the the file is of .gz then I don't have to anything else I have to do a unix2dos .. How do I do this ..
Here is the script
charset=us-ascii;export charset
for e in *
do
unix2dos $e $e
uuencode $e $e
done| mailx -s "$subject" $address
Any help is highly appreciated ..
Thanks,
Sridhar
I have script wherein I am sending an email with multiple attachments. If the the file is of .gz then I don't have to anything else I have to do a unix2dos .. How do I do this ..
Here is the script
charset=us-ascii;export charset
for e in *
do
unix2dos $e $e
uuencode $e $e
done| mailx -s "$subject" $address
Any help is highly appreciated ..
Thanks,
Sridhar