UUencode UUdecode


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users UUencode UUdecode
# 1  
Old 11-24-2003
UUencode UUdecode

Could any 1 send me the details for uuencode and decode . I am working on something which was coded by some1 else using these two commands .

I am having a a pwd file with password in the encrypted form as
y\215G\216!A\231Ò.:¹...

they use a key file which decrpt that pwd file ....key file is having the contents as

begin 664 /mdf/mdftst/utl/tool/etc/.key.uu
&;F]K97D*

end

I would like to know how this thing is working to decrpt that file ..

Something new for me ...

I am workign on SUN solaris 5.8

Thanks
# 2  
Old 11-24-2003
It is not encrypted, it is encoded. That is, binary data has been converted into ascii. To recreate the binary, just use uudecode. It's not like you need password or anything.

The algorithm is complex, but you don't need to know that. gzip/gunzip have complex algorithms too, but they are very easy to use.
# 3  
Old 11-24-2003
Thanks Perderabo...

Oops it was encoding .. thanks again
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. UNIX for Dummies Questions & Answers

Uuencode & Uudecode - file gets corrupted

I need to convert jar files from bin-to-ascii, and then reverse ascii-to-bin. The 'cksum' do not match for few files before and after. Any idea why Uuencode is corrupting some files? I am using the following commands: To encode: uuencode -m /tmp/in/myfile.jar myfile.jar >... (5 Replies)
Discussion started by: aishwarya_rai
5 Replies

4. 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

5. 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

6. 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

7. 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

8. 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

9. Shell Programming and Scripting

uuencode & uudecode - permissions

$ ls -l example_1.sh -rwxr--r-- 1 vsetm7am nofiles 918 Sep 5 19:54 example_1.sh $ stat -c %a example_1.sh 744 $ uuencode "test.file" <example_1.sh >uuexample.uu $ uudecode uuexample.uu $ ls -l test.file -rw-r--r-- 1 vsetm7am nofiles 918 Sep 7 14:44 test.file How come that the user... (2 Replies)
Discussion started by: MartyIX
2 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