I'm on a server running a Linux shell. I need to mail a simple file to a recipient. How to do this, prefereably using only the mail command?
UPDATE: got a good solution, using mutt instead:
$ echo | mutt -a syslogs.tar.gz admin@domain.org
|
1
|
|
|
|
|
|
Example using uuencode:
and reference article: |
||||||
|
|
|
But it uses mutt, not mail (or mailx). |
||
|
|
|
|
mailx might help as well. From the mailx man page:
Pretty easy, right? |
|||
|
|
|
|
My answer needs base64 in addition to mail, but some uuencode versions can also do base64 with -m, or you can forget about mime and use the plain uuencode output...
|
||
|
|