Sponsored Content
Top Forums Shell Programming and Scripting how to run a script using cron job and send the output as attachment via e-mail using unix Post 302528902 by vidhyaS on Wednesday 8th of June 2011 07:30:43 AM
Old 06-08-2011
Thanks for the quick reply!

i just integrated the pattern in my script,
(cat /path/log_file ; uuencode /path/log_file log_file) | mailx -m -s "Logs" email_id

but the following error thrown,
Code:
mailx: invalid option -- m
Usage: mail [-iInv] [-s subject] [-c cc-addr] [-b bcc-addr] to-addr ...
            [-- sendmail-options ...]
       mail [-iInNv] -f [name]
       mail [-iInNv] [-u user]
/path/sample.sh: line 47: uuencode: command not found


Am using Bash shell script!

Last edited by Franklin52; 06-09-2011 at 03:32 AM.. Reason: Please use code tags
 

10 More Discussions You Might Find Interesting

1. AIX

Command line/Script to send E-mail with HTML body and binary attachment

I apoligize for the cross-post but I'm not getting much in the way of help in the dummies forum: I'm trying to script sending an e-mail message on an AIX 5.x server with the following requirements: 1. command line switch to specify file name containing message body in HTML format 2. command... (3 Replies)
Discussion started by: G-Man
3 Replies

2. Shell Programming and Scripting

Script needed which will send a mail with attachment files

Hello, I need a shell script which need to send a mail with 4 *.csv files as attachments.Anybody can help me? At present i have a script which is sending only one file as attachments.But i need a script which send 4 files in a shot. #!/bin/ksh /bin/mail xxxx@xx.xom << EOF Subject:... (4 Replies)
Discussion started by: Mar1006
4 Replies

3. Shell Programming and Scripting

how to send a attachment mail in unix

hi, i have the code as below #!/bin/sh MAIL=/usr/bin/Mail Mail_addr="aaa@bb.com" Mail_file="/home/delta/dev/aa.doc" ${MAIL} -s " health check" ${Mail_addr} < ${Mail_file} (6 Replies)
Discussion started by: mail2sant
6 Replies

4. Shell Programming and Scripting

send mail from AIX unix with multiple attachment

Hi, I have the below code for sending email from AIX unix. I need the body of the mail should content of errornotify.txt file. i tested with cat errornotify.txt, it is not working...Also i need multiple attachments. Can you please help me out on this. ( echo "From:cus@xxx.xx.com" echo... (3 Replies)
Discussion started by: rsivasan
3 Replies

5. Shell Programming and Scripting

how to avoid cron job output to send to the junk email folder?

Hi i created a cron job which invoke a shell script and output some content via email. Some times these output are sent to the junk email folder. i want these mails to be sent to inbox with some specific font. what i have to do? (4 Replies)
Discussion started by: vidhyaS
4 Replies

6. Shell Programming and Scripting

How to send mail with attachment in Unix

Hi All, Is it possible to send mail in Unix with attachment. If yes, then how?? (8 Replies)
Discussion started by: parthmittal2007
8 Replies

7. AIX

Need to send attachment in Mail without using uuencode via script in AIX6.1

Dear All, Would some one help me with this to send a file as attachment in a mail using a script without uuencode... I am working on AIX 6.1, the thing is I dont have uuencode available... Is there any other alternate possible way to send file attachment with the mail without using uuencode... (11 Replies)
Discussion started by: msmadhan11
11 Replies

8. Shell Programming and Scripting

Output differs when run manually and when cron job executes it

I get a different output when i manually run the .sh script and when it is run by a cron job. Please help me .. TMP1="/lhome/bbuser/script/wslog/sar.t1" TMP2="/lhome/bbuser/script/wslog/sar.t2" TMP3="/lhome/bbuser/script/wslog/sar.t3" OUTPUT="/lhome/bbuser/script/wslog/sar.out"... (8 Replies)
Discussion started by: nithinankam
8 Replies

9. Shell Programming and Scripting

Script that will send an email if the cron job did not run.

Team, Would like to know what is the best script that will send you an email if cronjob did not run. Thanks (4 Replies)
Discussion started by: kenshinhimura
4 Replies

10. Shell Programming and Scripting

A shell script to run a script which don't get terminated and send a pattern from the output by mail

Hi Guys, I am very new to shell script and I need your help here to write a script. Actually, I have a script abc.sh which don't get terminated itself. So I need to design a script to run this script, save the output to a file, search for a given string in the output and if it exists send those... (11 Replies)
Discussion started by: Sambit Sahu
11 Replies
uuencode(1c)															      uuencode(1c)

Name
       uuencode, uudecode - encode/decode a binary file for transmission via mail

Syntax
       uuencode [file] remotedest | mail sys1!sys2!..!decode
       uudecode [file]

Description
       The  and  commands are used to send a binary file by uucp (or other) mail.  This combination can be used over indirect mail links even when
       is not available.

       The command takes the named source file (default standard input) and produces an encoded version on the standard output.  The encoding uses
       only printing ASCII characters, and includes the mode of the file and the remotedest for recreation on the remote system.

       The  command  reads  an	encoded file, strips off any leading and trailing lines added by mailers, and recreates the original file with the
       specified mode and name.

       The intent is that all mail to the user ``decode'' should be filtered through the program.  This way  the  file	is  created  automatically
       without	human  intervention.   This  is possible on the uucp network by either using or by making be a link to instead of In each case, an
       alias must be created in a master file to get the automatic invocation of

       If these facilities are not available, the file can be sent to a user on the remote machine who can uudecode it manually.

       The encode file has an ordinary text form and can be edited by any text editor to change the mode or remote name.

Restrictions
       The file is expanded by 35% (3 bytes become 4 plus control information) causing it to take longer to transmit.

       The user on the remote system who is invoking (often must have write permission on the specified file.

See Also
       mail(1), uucp(1c), uusend(1c), uux(1c), uuencode(5)

																      uuencode(1c)
All times are GMT -4. The time now is 06:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy