uuencode


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting uuencode
# 8  
Old 02-18-2011
whats the issue/error ?
# 9  
Old 02-18-2011
I have follow below 3 steps -
Code:
. mv ukba_pb_rfs_daily.txt ukba_pb_rfs_daily.csv
 
. compress ukba_pb_rfs_daily.csv
 
.os uuencode reports/ukba_pb_rfs_daily.csv.Z ukba_pb_rfs_daily-$FILDTE.csv |mailx -s "ukba_pb_rfs_daily" abc@test.com

I have received an email but the file format is very bad not in .csv

Last edited by Scott; 02-18-2011 at 01:58 PM.. Reason: Code tags
# 10  
Old 02-18-2011
you need to uncompress the file and then open it..
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. 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

6. UNIX for Dummies Questions & Answers

uuencode

Ello I am having trouble getting uuencode to work. This is the command I am using. 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... (5 Replies)
Discussion started by: demention
5 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