uuencode


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting uuencode
# 1  
Old 02-18-2011
uuencode

HI,

I want to zip it before sending to email.

-- This works fine.
Code:
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.

Code:
uuencode gtsa_lmt_pb_rfs_daily.txt ukba_pb_rfs_daily.csv | gzip | mailx -s "ukba_pb_rfs_daily" test@abc.com

Please can you help me. Thanks.
# 2  
Old 02-18-2011
Code:
gzip gtsa_lmt_pb_rfs_daily.txt ukba_pb_rfs_daily.csv

uuencode gtsa_lmt_pb_rfs_daily.txt.gz ukba_pb_rfs_daily.csv.gz | mailx -s "ukba_pb_rfs_daily" test@abc.com

or try:

Code:
tar cf - gtsa_lmt_pb_rfs_daily.txt ukba_pb_rfs_daily.csv |gzip -f |uuencode file.tar.gz |mailx -s "ukba_pb_rfs_daily" test@abc.com

# 3  
Old 02-18-2011
HI,

Please confirm : gzip will convert .txt file .csv.

below command is not working -
Code:
$ gzip ukba_pb_rfs_daily.txt ukba_pb_rfs_daily.csv
ukba_pb_rfs_daily.csv: No such file or directory

Best Regards,

---------- Post updated at 07:11 AM ---------- Previous update was at 06:49 AM ----------

also: looking for ukba_pb_rfs_daily.csv file
Code:
tar: ukba_pb_rfs_daily.csv: No such file or directory

Code:
tar cf - gtsa_lmt_pb_rfs_daily.txt ukba_pb_rfs_daily.csv |gzip -f |uuencode file.tar.gz |mailx -s "ukba_pb_rfs_daily" test@abc.com

thanks for you advise.

Last edited by Scott; 02-18-2011 at 01:57 PM.. Reason: Use code tags, please...
# 4  
Old 02-18-2011
gzip will will create the .gz file .

if you want to zip and send it .. try below


gzip <file name with full path> ; uuencode <file name with full path>.gz '<Name of the file which should be seen in receipt mail>' | mailx -s "subject" mail@abc.com
# 5  
Old 02-18-2011
I want to do this way -
First: convert text file to .csv file.
Second: zip .csv
Third: then email the zipped .csv file

Thanks for your help.
# 6  
Old 02-18-2011
rename the file by --> mv file.txt file.csv

then zip and mail it.
# 7  
Old 02-18-2011
please can I have full script I was not able to success.
Code:
mv ukba_pb_rfs_daily.txt ukba_pb_rfs_daily.csv

compress ukba_pb_rfs_daily.csv
Code:
uuencode ukba_pb_rfs_daily.csv.Z ukba_pb_rfs_daily.csv | mailx -s "subject" test@abc.com

Moderator's Comments:
Mod Comment Please use code tags.

Last edited by Sampath.Rachcha; 08-05-2011 at 07:00 AM..
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