[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-developers] mail command
- Subject: Re: [cobalt-developers] mail command
- From: Anders <andersb@xxxxxxxxxxx>
- Date: Thu Oct 23 08:32:00 2003
- List-id: Discussion Forum for developers on Sun Cobalt Networks products <cobalt-developers.list.cobalt.com>
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