Alternative to UUENCODE in linux


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Alternative to UUENCODE in linux
# 1  
Old 10-16-2009
Alternative to UUENCODE in linux

In my linux system, UUENCODE command is not available. I need to send the log file as an attachement. Is there any other way to do so?
# 2  
Old 10-16-2009
Please state your Operating System and version, and identify your mail client. An example of how you send a mail without an attachment helps.

Just on the offchance. Program "uuencode" is lower case.

To check whether "uuencode" is available:
Code:
type uuencode
whence uuencode

Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Alternative for /usr/sbin/userdbset on Linux

Hello. I am currently on HPUX and migrating to Linux RHEL 6.4 This program on hpux: /usr/sbin/userdbset is puzzling me on linux. Does anyone know the equivilent program forked or used on linux. This program is mentioned in our user reset script. here is a strings of the... (2 Replies)
Discussion started by: olyanderson
2 Replies

2. UNIX for Dummies Questions & Answers

I want alternative of -maxdepth 1 for all Linux,Solaris and AIX

find /full/path/dir \( ! -name dir -o -type f \) -prune -type f on AIX it worked perfect : sdp1:/var/tmp/test# find /var/tmp/test/ \( ! -name test -o -type f \) -prune \ -name "*properties" -type f -exec ls -l {} \; -exec cksum {} \; -rw------- 1 root system 19 Dec 12... (5 Replies)
Discussion started by: laxmikant.hcl
5 Replies

3. Shell Programming and Scripting

Alternative of UUENCODE in LINUX

Hi All, We just migrated from Sun unix box to Redhat Linux 5.5 (CentOS). One of my email script that attaches a log file and send email. This script used to work on sun box but does not work on Linux. The script uses UUENCODE command(code below). This works in Sun box but not in Linux. Is... (3 Replies)
Discussion started by: simi28
3 Replies

4. Shell Programming and Scripting

ALternative to Linux wget

Hi I am looking to extend a script which does a wget on a url and then works out throughput from the get on the url. I would like to extend this to include some streaming. Is there an alternative to wget for streaming? I have tried to stream within the script as below using wget but it... (3 Replies)
Discussion started by: rob171171
3 Replies

5. Shell Programming and Scripting

How to embed a html file in a mail sending from Linux box with uuencode or mailx?

How to embed a html file as subject in a mail sending from Linux box with uuencode or mailx or any other way? we do not want the file as attachment, it should be embedded in the mail subject. (2 Replies)
Discussion started by: johnveslin
2 Replies

6. Programming

Alternative of timeGetTime() in Linux

Hi, does anyone knows of a function timeGetTime() that i can use in Linux. timeGetTime() is a method of mmsystem.h, but what about linux?? Or is there a similar function in ACE that I can use??? thanks. (1 Reply)
Discussion started by: jasonlimvm
1 Replies

7. UNIX for Advanced & Expert Users

uuencode: command not found when sending mail in LINUX

HI all, When i run this command below i get this error: (cat /root/body.txt ; uuencode -m Summaryfile.zip) | mailx -s "completed" sandeep@help.com bash: uuencode: command not found Does anyone know why this is happening? Or is there any alternative to send mail with an... (2 Replies)
Discussion started by: bsandeep_80
2 Replies
Login or Register to Ask a Question