[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-developers] mail command



Or-Or wrote:
> I there a way to e-mail a file from shell to someone as an attachment? I
> know it's possible to mail a file's contents by using...
> 
> mail -s "--== File ==--" me@xxxxxxxxxxxxx < /home/file.txt

uuencode /home/file.txt file.txt | mail -s "File" me@xxxxxxxxxxxxx

--anders