Custom command and email


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Custom command and email
# 1  
Old 10-21-2015
Custom command and email

Hi All,

I am having a program called emailstat which will send email based on the message we pass

Code:
emailstat -email <email> [-subject <subject>] [-message <message>]

now I am trying to run the
Code:
vmstat

and and pass the output to emailstat source in -message part. Is this possible ?

Thanks
Arun
# 2  
Old 10-21-2015
Did you consider "command substitution"?
# 3  
Old 10-21-2015
Hi,

Thanks for your reply. I tried like
Code:
-message `vmstat`

it didnt worked. Is there some way I can pipe it and append as a text ?

Thanks,
Arun

Last edited by arunkumar_mca; 10-21-2015 at 03:49 PM..
# 4  
Old 10-21-2015
Why "it didnt worked"? Any err msgs? Did you try to double quote the command substitution?
# 5  
Old 10-21-2015
Try:
Code:
-message "`vmstat`"

instead of:
Code:
-message `vmstat`

And be sure that you also properly quote that option-argument value when you expand it inside emailstat.

Unless you're using an original Bourne shell, the preferred syntax is:
Code:
-message "$(vmstat)"

This User Gave Thanks to Don Cragun For This Post:
# 6  
Old 10-21-2015
yes, double quotes as below .. Still didn't worked . It sends the vmstat as text in email not the result of vmstat.

Code:
emailstatus -email myemail@XX.com  -subject TEST -message "vmstat"

# 7  
Old 10-21-2015
Please read post #5 in this thread...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Email Command Error

Hi , i am very new unix i need a script which should check for the size of the file and if it is greater than zero ,than i have copy the contain of the file (the file we have checked the size) as body . Thanks Anuddep (4 Replies)
Discussion started by: kkabc789
4 Replies

2. Shell Programming and Scripting

how to create custom modules in perl and how to import all modules with single command?

I have some custom functions which i want to use in perl Scripting all time. i want to How to create modules in perl and how to import them. Also if i create 15 modules and i want to > import all at once then how can i import? (0 Replies)
Discussion started by: Navrattan Bansa
0 Replies

3. Shell Programming and Scripting

Using top command to email if process is exceeding 25% and sending an email alert if so

This is my first time writing a script and Im having some trouble, Im trying to use the top command to monitor processes and the amount of CPU usage they require, my aim is to get an email if a process takes over a certain percentage of CPU usage I tried grep Obviosly that hasnt worked, Any... (8 Replies)
Discussion started by: jay02
8 Replies

4. Shell Programming and Scripting

Custom UNIX Shell Command

Hi, This may be a silly question. I have been searching for a while on this. How can I create a custom unix command using C (a command similar to 'echo'). (1 Reply)
Discussion started by: tinufarid
1 Replies

5. UNIX for Dummies Questions & Answers

grep command for email

May I know what is the command-line instruction to show all the subjects and authors of my emails contained in a directory by using egrep? Thanks! (2 Replies)
Discussion started by: marcuslki
2 Replies

6. Shell Programming and Scripting

custom command

hi I am trying to make my own commands in my linux.I thought a command for changing directories will be easy. I made a simple file amd made the entries #!/bin/bash cd /opt/mydir I then made the file executable and then moved it to /usr/bin. But when i type the script name nothing... (2 Replies)
Discussion started by: born
2 Replies

7. UNIX for Dummies Questions & Answers

command to email from the terminal

I have a script, myscript.sh that I need the output to be sent by email to bernadette@email.com bill@email.com and will@email.com . How do I go about making this happen? I am using the Macintosh Operating system with Entourage 2008 as my email client, but I would fine just doing this in the... (4 Replies)
Discussion started by: glev2005
4 Replies

8. UNIX for Dummies Questions & Answers

Not able to send email as CC to a ID using Mailx command in HP UX

Hey Guys, I have been trying to send a email as ccto a email ID .However it seems the -c option is not working in HP UX system. It is shooting an error as "mailx: illegal option -- c" My script isin the below manner: mailx -c EMAIL_IDS_CC# -s 'BDC reminder' -r sender@email.com... (1 Reply)
Discussion started by: rohit.shetty84
1 Replies

9. Shell Programming and Scripting

Custom PS command

(0 Replies)
Discussion started by: goldfish
0 Replies

10. Programming

How do I send email from command prompt?

hi all How do I send email from command prompt? i tried this # mutt -s "Test mail" -a /root/Desktop/email1.txt XXXXX@yahoo.co.in < /root/Desktop/email.txt Error sending message, child exited 71 (Operating system error.). Segmentation fault # and also root@localhost ~]# /bin/mail -s "what... (0 Replies)
Discussion started by: munna_dude
0 Replies
Login or Register to Ask a Question