Attachment readablity using mailx command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Attachment readablity using mailx command
# 8  
Old 09-24-2014
Hi gul,

Below is the output when i do
Code:
file abc.log

abc.log:  ASCII English text, with CRLF, LF line terminators

even i tried with your command as suggested, but as said earlier its going on iteration.(i.e its going in the loop) i have to do a control+C to come out.


Regards
Whizkid

Last edited by vbe; 09-24-2014 at 11:02 AM.. Reason: [CODE][/CODE] is not good enough... You must insert between!
# 9  
Old 09-24-2014
Hi,

It looks like this may be a dos format file, check if you have "dos2unix" if not you can pipe the file through any number of unix utilities to convert to a unix format.

Regards

Dave
# 10  
Old 09-25-2014
Hi Dave,

Could provide me with the specific examples.. it would indeed be great assistance.
# 11  
Old 09-25-2014
What OS are we dealing with?
# 12  
Old 09-25-2014
Its Linux Vbe..Smilie
# 13  
Old 09-25-2014
Hi Wizkidash,

The format for the "dos2unix" command is;

Code:
dos2unix < abc.log > file_name

You should then be able to mail the file, if there is still an issue - post the output of.

Code:
head abc.log | cat -v -t

Regards

Dave
# 14  
Old 09-25-2014
Perl is probably the most robust way to send emails with attachments. You need the mime:lite perl utility, but it is well documented.

MIME::Lite - search.cpan.org
This User Gave Thanks to gandolf989 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unable to send attachment using mailx command

I am unable to send email with attachment using the mailx command. Without the attachment, the email goes through file. This is the command I use. Works : $ echo "Test" | mailx -s "Test" username@website.com Fails : $echo "Test" | mailx -a all-dss-accounts.txt -s "Test"... (3 Replies)
Discussion started by: nkarthik_mnnit
3 Replies

2. Shell Programming and Scripting

AT00003.bin attachment is received from mailx command.

Hi Team, I am sending a mail from Linux box as shown below. cat sample.log | mailx -s "Testing" abc.com But instead of receiving the content of sample.log in the mail i got an attachment with name AT00001.bin. After looking into the contents of log file i found that there are some... (1 Reply)
Discussion started by: Girish19
1 Replies

3. Shell Programming and Scripting

Mailx command to send attachment file

Hi, I need to send a attachment which has space in the file name as: "ABC Data Extract.txt" which is present in the location /home/projects/txt i am using /home/projects/scripts mailx -s "Sub" email_id "/home/projects/txt/ABC Data Extract.txt" but i am not getting the attachment. (7 Replies)
Discussion started by: ATWC
7 Replies

4. UNIX for Dummies Questions & Answers

Linux - mailx - attachment - via script/command

Hi I am trying to send an email using mailx with an attachment but without using uuencode. as per man page we can use -a option. I tried below command mailx -s "test" -a "/home/test/1.txt" "abc@gmail.com" but it waits for more input and i had to press ControlD which in turns print... (0 Replies)
Discussion started by: reldb
0 Replies

5. Shell Programming and Scripting

want to send .csv file as an attachment using mailx command.

want to send .csv file as an attachment using mailx command. Please help!!! (1 Reply)
Discussion started by: gagandeep
1 Replies

6. Solaris

mailx with attachment

Hi, When i used below command, i am able to send mail mailx -s "Testing mail working or not " babu.sudhakar@ymail.com" but if i want send attachment with mail,which syntax i need to follow to send a file as attachment. (3 Replies)
Discussion started by: sridhardwh
3 Replies

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

8. Shell Programming and Scripting

Adding an attachment as an attachment to mailx

I don't want the attachment embedded in the mail. I would like a file attached. When I do mailx -s "Report, `date +'%D %r` " -r "Notifications" bob@bob.com < /usr/local/bin/myreport.log> /dev/null It gets embedded in my email. I want a file attachment. How do I do that? (2 Replies)
Discussion started by: guessingo
2 Replies

9. Shell Programming and Scripting

Problem with Mailx command to send mail with attachment

Hi, I am using mailx command to send a mail with attachment. It's working fine, but with attachment I am getting one extra attachment like (ATT00131.txt). I have tried to use unix2dos command also. But still I am getting the extra attachment. I am using the following code: subject="temp... (5 Replies)
Discussion started by: viswanatharv
5 Replies

10. Shell Programming and Scripting

Problem with mailx command when sending attachment.

Hi, I have tried to sent a mail with body and attachment. But the shell script got hanging while executing that command. The command is "(cat body;uuencode att1.csv)|mailx -s "Production Monitoring Report(Unix Side)" milton.yesusundaram@patni.com" where body is a file having a single line.... (2 Replies)
Discussion started by: miltony
2 Replies
Login or Register to Ask a Question