mailx every file in directory


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers mailx every file in directory
# 1  
Old 01-11-2008
mailx every file in directory

Hi all,

I know how to use the uuencode/mailx commands to mail a single file within a directory, e.g.

uuencode file.dat file.dat | mailx joe.smith@mail.com

but now, i need to be able to mail every file within the directory with one command, any ideas?

thanks
Smilie
# 2  
Old 01-13-2008
Quote:
Originally Posted by ocelot
Hi all,

I know how to use the uuencode/mailx commands to mail a single file within a directory, e.g.

uuencode file.dat file.dat | mailx joe.smith@mail.com

but now, i need to be able to mail every file within the directory with one command, any ideas?

thanks
Smilie
{
for FILE in `ls`
do
uuencode ${FILE} ${FILE}
done
} | mailx joe.smith@mail.com
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Unable to attach a .txt file or .log file to mail and mailx command

Hi, I am trying to attach a .log file or .txt file to mail command to send an email once my ksh script executed. I am unable to use mutt command as it has been not installed and i am not supposed to install it. I have tried many ways by googling which has not helped me to succeed. Here is my... (5 Replies)
Discussion started by: Samah
5 Replies

2. UNIX for Dummies Questions & Answers

Mailx - temporary mail message file: No such file or directory

How would I go about resolving this error temporary mail message file: No such file or directory Can anybody tell me where the default location is for the temporary mail message file is for mailx? It appears that it doesn't exist. Thanks (1 Reply)
Discussion started by: joen
1 Replies

3. Shell Programming and Scripting

Attach file in mailx command

Hi I want ot send a mail with aatach a file for this i have tried mailx -s "COMPLETED: deal.sh" -a root/usr/local/bin/sched/nightly_Cronjob/test.out me@nowhere uuencode /usr/local/bin/sched/nightly_Cronjob/test.out /usr/local/bin/sched/nightly_Cronjob/test.out | mailx -s "COMPLETED:... (2 Replies)
Discussion started by: Himanshu_soni
2 Replies

4. Solaris

how to send last file with mailx

I use mailx to send some log files. The log files are generated hourly. So many files stored in that folder. The log file is saved to a directory as "FILE_NAME=$ORACLE_SID`date + %m%d%y_%T`. I use syntax like this: mailx -s 'subject' myemail@company.com < /directory/$FILE_NAME Because... (2 Replies)
Discussion started by: duke0001
2 Replies

5. Shell Programming and Scripting

Mailx: How to send a attachment using mailx command

Hi All, Can anyone please provide the command for sending an mail with attachment using mailx command. Thanks in Advance :) Regards, Siram. (3 Replies)
Discussion started by: Sriram.Vedula53
3 Replies

6. Shell Programming and Scripting

Unable to attache file in mailx

I have script to send report to the recipent along with a short decription of a message. But unfortunatly it fails to deliver the report as attachment nothing apart from the message come, please find the part where I am getting stuck and confused ... please check out if you have any better... (1 Reply)
Discussion started by: nicknihal
1 Replies

7. UNIX for Dummies Questions & Answers

Issue with file permissions when using mailx

Hiya... I've got a script on AIX 4.2 that sends an email, with an attachment, that has always worked happily in the past and has chosen today to stop working. It now throws up an error "/tmp/Rs13492: The file access permissions do not allow the specified action" The /tmp/RsXXXXX file name... (2 Replies)
Discussion started by: phaedrus
2 Replies

8. UNIX for Dummies Questions & Answers

mailx every file in directory

Hi all, I know how to use the uuencode/mailx commands to mail a single file within a directory, e.g. uuencode file.dat file.dat | mailx joe.smith@mail.com but now, i need to be able to mail every file within the directory with one command, any ideas? thanks :b: (1 Reply)
Discussion started by: ocelot
1 Replies

9. UNIX for Dummies Questions & Answers

Mailx : can we have the body to be a binary file ?

Hi I am totally dummy as far as UNIX is concerned, so please apologize. I was just given the syntax to send multiple attachments with a body.txt message, it works great and we use it a lot. Now, my question is : can we have the body to be a Binary file (like a Word Document for example)? ... (5 Replies)
Discussion started by: CKIRCH
5 Replies

10. UNIX for Dummies Questions & Answers

mailx error message : mailx: NUL changed to @

If I use the "Mail" link instead of the "mail" link to ../mailx I get this error. Mail so-n-so @whatever.com mailx: NUL changed to @ Unknown command: "postmaster" The email still goes through but i get the error. If I use "mail" it goes thru without the error. Any ideas?? (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies
Login or Register to Ask a Question