mailx problem


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users mailx problem
# 1  
Old 03-08-2011
Bug mailx problem

I executed my script in linux environment so Here Im facing problem.In linux has mailx command but if i include in following way Im getting error like ./script2.sh: line 6: mailx: command not found.
if I use mail command also Im getting same error.

Code:
$ cat script2.sh
 
while ps | ./pwtst
do
     sleep 1m
done
echo "The pwctest was not running properly "| mailx srivani.k@yahoo.co.in

Plz help me out for this script.

Last edited by joeyg; 03-08-2011 at 10:03 AM.. Reason: Please use CodeTags
# 2  
Old 03-08-2011
Perhaps some environment variable like PATH is not exported, to support mailx ? What about . ./script2.sh?

Also, your script should begin with #!/bin/ksh or the like, see man exec(). Just chmod is not enough. Without, this is usually treated as a bourne shell script: sh <./script2.sh
This User Gave Thanks to DGPickett For This Post:
# 3  
Old 03-08-2011
In script, it is good habit that you provide the full path for executable file such as instead of mailx you can use /usr/bin/mailx...
This User Gave Thanks to sinnud For This Post:
# 4  
Old 03-09-2011
while ps | ./pwtst
do
sleep 1m
done
echo "The pwctest was quited "| /usr/bin/mailx srivani.kolachina@yahoo.co.in

even though Im getting same error like
script2.sh: line 6: /usr/bin/mailx: No such file or directory

---------- Post updated at 11:17 AM ---------- Previous update was at 11:14 AM ----------

whenever I open the linux environment I use bash command
# 5  
Old 03-09-2011
check if mailx is available

Code:
$ which mailx

# 6  
Old 03-14-2011
What's in pwtst, and it usually is simple, so why not just say it?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Mailx hanging problem

Hi all, I issued the following mailx -s "TEST" <mail> However it just hang there. :wall: How do i diagnose why it behave like this? Thanks. ---------- Post updated at 02:20 PM ---------- Previous update was at 10:27 AM ---------- No reply on this. Any help will be appreciated. I'm... (2 Replies)
Discussion started by: beginningDBA
2 Replies

2. Shell Programming and Scripting

mailx problem with multiple cc

I am writing a script to send an email of the result of the process but i cannot make the cc work correctly. RECIP="abc@example.com def@example.com" CC="ghi@example.com jkl@eaxmple.com" mailx -s "testing" -c $CC $RECIP < inputfile.txt Result: To: abc@example.com; def@example.com;... (4 Replies)
Discussion started by: The One
4 Replies

3. UNIX for Dummies Questions & Answers

problem with mailx command

Hi, I have written down a script and in that im using mailx command in Unix. Such that i have taken the reciepent that would be in "To" using read command i.e from standard input and echoed the reciepients in cc into a file .Now im not able to use the mailx -r ie which sends the sender... (1 Reply)
Discussion started by: navjotmannan
1 Replies

4. UNIX for Dummies Questions & Answers

mailx -c PROBLEM

hi All, i want to email to abc@abc.com which will be in "to" and to def@def.com which will be in "cc". i tried like this: mailx -s "Total Collection" abc@abc.com -c def@def.com but i took error :( How can i success? Thanx so much. ---------- Post updated at 08:19 AM... (1 Reply)
Discussion started by: temhem
1 Replies

5. Shell Programming and Scripting

mailx, uuencode problem

I've this command to run ... Purpose : Send attachment file with e-mail body... ( E-mail body i read it from text file) uuencode TEST_FILE.csv TEST_FILE.csv | cat /usr/local/bin/EMAIL_BODY.txt - | mailx -s "TEST Report" -c receiver1@mail.com receiver2@mail.com Here is the... (2 Replies)
Discussion started by: prash184u
2 Replies

6. Shell Programming and Scripting

mailx problem

Hi Experts, Just need help maybe you have some time to spare :) I am having trouble creating a working script that will scan a file and mail specific persons I need to mail 5 persons person1,person2,person3,person4,person5 Person1,person2 I need to put them in the TO: field while... (0 Replies)
Discussion started by: makaveli
0 Replies

7. UNIX for Dummies Questions & Answers

Mailx problem

I can send mail from my Sun Solaris 9 box via the mail gui no problem. If I try it from mailx command line, the mail doesn't send. What might be causing this? thanks. (5 Replies)
Discussion started by: FredSmith
5 Replies

8. UNIX for Advanced & Expert Users

problem with mailx

Hi unix lovers, I have some problem with using mailx. I want to send mail as per the instructions in a file. The mail does not reach to CC recepients. To get a clearer picture, this is what I am typing on unix prompt. $ $ mailx ashishp@suntech.com < mail.txt $ And my mail.txt looks... (7 Replies)
Discussion started by: shriashishpatil
7 Replies

9. UNIX for Dummies Questions & Answers

mailx problem

Is there a size limit on the file that can be sent using mailx? I'm trying mailx -s "alertlog" tome@work < /dir/my.log and I only get a portion of the log. The newest portion of the log is not included in the mail. Additionally, I would like the option of mailing just the last 100... (1 Reply)
Discussion started by: djbartkow
1 Replies

10. UNIX for Dummies Questions & Answers

mailx problem

Here is a question I have, maybe someone can help me out. I am new to this UNIX thing. :) I have a file called elist. In this file is a list of 25 email adresses. How can I write a simple command line for that will read the names of the file and send it to each of the email addys. Can I... (2 Replies)
Discussion started by: iastorms
2 Replies
Login or Register to Ask a Question