uuencode


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers uuencode
# 1  
Old 02-04-2010
Question uuencode

Ello
I am having trouble getting uuencode to work.

This is the command I am using.
Code:
gzip -c /directory/path/file.txt | uuencode /directory/path/file.txt.gz | \
   /usr/bin/mailx -s"file -$(date)" email@email.com < /directory/path/file.txt.gz

However when I receive the email there is no attachment just the random characters.

This will be my first time using uuencode.

Thanks
Demi

Last edited by Scott; 02-04-2010 at 05:30 PM.. Reason: Please use code tags
# 2  
Old 02-04-2010
I didn't test this, as I didn't set up sendmail, etc...

Code:
gzip -c /directory/path/file.txt | uuencode file.txt.gz |  \
   /usr/bin/mailx -s"file -$(date)" email@email.com

# 3  
Old 02-04-2010
Thanks for the quick reply. When I use this command structure I receive command not found.
# 4  
Old 02-04-2010
Which command, does it say?

I split your command over two lines using \ because it got rid of the scroll bar!

Code:
gzip -c /directory/path/file.txt | uuencode file.txt.gz | /usr/bin/mailx -s"file -$(date)" email@email.com

# 5  
Old 02-04-2010
The output is this:
-bash: /usr/bin/mailx: No such file or directory
# 6  
Old 02-04-2010
Quote:
Originally Posted by demention
The output is this:
-bash: /usr/bin/mailx: No such file or directory
Hmm. I'm curious to know why that happens if your original command worked (albeit without the attachment).

And if you type

Code:
/usr/bin/mailx

at the prompt?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with mailx, uuencode

Here's my code - FILES="file1 file2 file3" for File in ${FILES}; do uuencode "${File}" "$(basename ${File}" done | mailx email@id.com This works as expected, meaning emailing the files as attachments but with null body. Now what I want is a way to have the Body list the files in order e.g. ... (8 Replies)
Discussion started by: nexional
8 Replies

2. Red Hat

uuencode not found !

When I do this: $ whereis uuencode uuencode: /usr/share/man/man1p/uuencode.1p.gz Does that mean it is not installed? Becuase when I use this command it says it is not found !!! Anythought what needs to be done? OS=RedHat 5.8 Linux. (8 Replies)
Discussion started by: mrn6430
8 Replies

3. Shell Programming and Scripting

Need help in uuencode command

Hi, I am trying this command. /usr/bin/uuencode test.xls error.xls | mail -s "Testing" <emailid> Instead of me having an attachment, i am getting this. begin 644 error.xls M1&%T87-T86=E($5R<F]R<PI,2U`S.B!7:&5N(&-H96-K:6YG(&]P97)A=&]R... (7 Replies)
Discussion started by: mac4rfree
7 Replies

4. UNIX for Advanced & Expert Users

uuencode problem

Hi, I am making a shell script on HP-UX that will do some Oracle db query and fetch data. Then after formatting the output files (there are two files) in a csv format, I want to send them as email attachments. Unfortunately the email contains garbage. I could not find solution to the problem... (13 Replies)
Discussion started by: asutoshch
13 Replies

5. Shell Programming and Scripting

uuencode

HI, I want to zip it before sending to email. -- This works fine. uuencode gtsa_lmt_pb_rfs_daily.txt ukba_pb_rfs_daily.csv | mailx -s "ukba_pb_rfs_daily" test@abc.com --Below command is not working, it sends zunk file. uuencode gtsa_lmt_pb_rfs_daily.txt ukba_pb_rfs_daily.csv | gzip... (9 Replies)
Discussion started by: Sampath.Rachcha
9 Replies

6. UNIX for Dummies Questions & Answers

uuencode without attachment

Hi All, I'm using uuencode to send out mail from unix to lotus notes,but i dont have any attachment to send out, I'm getting this message in the body of the mail "Usage: uuencode remotedest" however if i dont use uuencode I'm not able to send out mail Please help Thanks (1 Reply)
Discussion started by: gwrm
1 Replies

7. Shell Programming and Scripting

uuencode error

hi all, i get the following error when i try and email a file as an attachment on a solaris box. the command is /usr/bin/uuencode $fileName $fileName | /usr/bin/mailx -s "file" $emailTo and the error is : /usr/bin/uuencode: ISO8859-1 to 646 conversion: Invalid argument The... (3 Replies)
Discussion started by: cesarNZ
3 Replies

8. Shell Programming and Scripting

Problem with uuencode

i used below code to attach a file but it's not attaching the file but sendinf a simple mail uuencode ${discord_file} mail_list.txt | mailx -s "TEST MAIL" xxx@yahoo.com (3 Replies)
Discussion started by: punitpa
3 Replies

9. Shell Programming and Scripting

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... (6 Replies)
Discussion started by: venkidhadha
6 Replies

10. Shell Programming and Scripting

uuencode

hi all, I dont know of this is a duplicate thread, but the thread i started a while ago wasnot posted still. ok my question is i have a shell script named "mail_editck.sh". i have to include some reports in it so that i can get the email when they are done. the syntax goes like this. ... (2 Replies)
Discussion started by: tejasingaraju17
2 Replies
Login or Register to Ask a Question