![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| problem with uuencode | rjsha1 | Shell Programming and Scripting | 9 | 04-29-2009 09:15 AM |
| uuencode not working | 150177 | Linux | 1 | 08-12-2008 01:46 PM |
| uuencode/mailx | ocelot | Shell Programming and Scripting | 1 | 01-11-2008 08:28 AM |
| uuencode | tejasingaraju17 | Shell Programming and Scripting | 2 | 11-20-2005 02:01 AM |
| UUencode UUdecode | myelvis | UNIX for Advanced & Expert Users | 2 | 11-24-2003 03:59 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Uuencode
Hi All,
I have a queryin the uuencode option. Actually i need to attach two files in a single mail. I am aware of attaching a single file using the command below. (echo " The first file ";uuencode file1 file1) | mailx -s " The files " venkidhadha@in.com However i am not sure what would be the command for attaching mulitle of two files. |
|
||||
|
This should work I guess.....
(echo " The first file ";uuencode file1 file1; echo " The sec file ";uuencode file2 file2) | mailx -s " The files " venkidhadha@in.com |
|
|||||
|
Quote:
|
|
||||
|
Well I used the following in a script far long back on ksh; if I remember
{ unix2dos -437 file1 | uuencode file1 file1; unix2dos -437 file2 | uuencode file2 file2; } | mailx -s "Files" abc@yahoo.com I fear if this doesn't work... Kindly confirm |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|