Sponsored Content
Top Forums Shell Programming and Scripting [Solved] adding email option to KSH Post 302686345 by vpundit on Tuesday 14th of August 2012 10:47:17 AM
Old 08-14-2012
Quote:
Originally Posted by Chubler_XL
Not quite sure what format you want the email in below has subject Completed and body with content of hdisk-2145:

Code:
mail -s "Completed" vpundit@example.com < /path/to/hdisk-2145

Also here is a smaller version of you spinner percentage thing:

Code:
i=1
BACK=$(tput cub 1)
set -A SPIN  '|' '/' '\' 
while [ $i -le 100 ]
do
   echo " ${SPIN[i%3]} $i%\c"
   sleep 0
   (( i += 1 ))
   [ $i -gt 9 ] && echo "${BACK}\c"
   echo "${BACK}${BACK}${BACK}${BACK}${BACK}\c"
done
echo


Works great! Thank you!

I like that simpler version of the counter as well! Thank you!Smilie
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

KSH : Disable -x option

I have a KSH script. I want NO-ONE to call it with -x option. example : ksh -x /appl/u001/test_it_out.ksh Is there a way to know, from with in script, that they invoked the script with -x option. So that I can exit when they invoke it with -x option. please help. (2 Replies)
Discussion started by: vangaru
2 Replies

2. Shell Programming and Scripting

Adding an Option

I have a file that takes 2 or 3 arguments... ie: $argv(2), $argv(3) If I had to add another argument, I would be ok, but nooo.. that would be too easy for the new programmer. Before you go there - This is not a school problem, it's a real world problem.. If I wanted to add an option, for... (1 Reply)
Discussion started by: Brusimm
1 Replies

3. Programming

probs adding linker option in g++

Hi all Im trying to compile a C++ program, however Im having issues trying to link a particular library to the compiling and linking statement. Here is what Im doing g++ mips4 -std=c++98 -g disk_reporter.cpp -o disk_reporter If I do this alone, the linker complains that library... (2 Replies)
Discussion started by: JamesGoh
2 Replies

4. Shell Programming and Scripting

KSH script to run other ksh scripts and output it to a file and/or email

Hi I am new to this Scripting process and would like to know How can i write a ksh script that will call other ksh scripts and write the output to a file and/or email. For example ------- Script ABC ------- a.ksh b.ksh c.ksh I need to call all three scripts execute them and... (2 Replies)
Discussion started by: pacifican
2 Replies

5. Shell Programming and Scripting

how do I change the email sender if I donot have the -r option?

Hey, after I check the man page for mail and mailx, I did not find the -r option. But, I have to change the email sender, how can I do it? Send Mode mailx address... Receive Mode mailx -e mailx mailx -f ... (0 Replies)
Discussion started by: freelong
0 Replies

6. Shell Programming and Scripting

Email with cc and bcc option

Hi, I am able to send email from AIX using the following command. cat email.txt | mail -s "Mail Subject" venkat@gmail.com Our requirement is send email with cc and bcc option. We are getting email with from email address as our UNIX server user. We would like to change that, please let us know... (2 Replies)
Discussion started by: vfrg
2 Replies

7. Shell Programming and Scripting

ping script with email option

Hi I have already posted about this issue here and I got reply from some members. Now I need few modifications to be done. Can someone assist ? I need a script to be put in cron and this script should run everyday morning at 06:00 AM. I have a filed named "network_hosts" and the below are... (7 Replies)
Discussion started by: newtoaixos
7 Replies

8. HP-UX

[Solved] Adding a column.

Hi, Please see the output below. CPU TTY PID USERNAME PRI NI SIZE RES STATE TIME %WCPU %CPU COMMAND 0 ? 92 root 152 20 144K 128K run 667:31 1.85 1.85 fcachedaemon 22 ? 10957 patrol 154 30 68036K 35704K sleep 571:43 1.53 1.53 PatrolAgent 0... (22 Replies)
Discussion started by: mohtashims
22 Replies

9. Shell Programming and Scripting

Adding another option to getopt

I am trying to code for the addition of a new argument to the command line, the option D to a code that already has ABC (below). When I use make to compile it, it displays: invalid option --D. I did define the global d variable, as well as initialized it inside the main function of the C code. I... (9 Replies)
Discussion started by: Alabama
9 Replies

10. Shell Programming and Scripting

ksh - default value for getopts option's argument

Hello everyone, I need help in understanding the default value for getopts option's argument in ksh. I've written a short test script: #!/bin/ksh usage(){ printf "Usage: -v and -m are mandatory\n\n" } while getopts ":v#m:" opt; do case $opt in v) version="$OPTARG";; ... (1 Reply)
Discussion started by: da1
1 Replies
smtpfront(8)						      System Manager's Manual						      smtpfront(8)

NAME
smtpfront - SMTP Front Ends SYNOPSIS
smtpfront DESCRIPTION
The code for SMTP is divided internally into two sections: front-end and back-end code. The front-end code handles the low-level details of the protocol. The back-end code handles the validation and delivery details in a protocol-independant fashion. FEATURES
The following features are common to all SMTP front-ends: o Validates senders and recipients according to ``mailrules'' processing. o If $RELAYCLIENT is set, all recipient addresses not rejected by mail rules are allowed, and its contents are appended to each recipient address. Back-end validation is omitted. o Handles RFC 2554 SMTP authentication. After authentication all recipients not rejected by mail rules are allowed, and back-end valida- tion is omitted. o Automatically handles either bare NL or RFC 821/2821 compliant CR/NL end-of-line conventions. o Rejects messages that exceed $DATABYTES bytes in the body. o Times out connections after $TIMEOUT seconds of inactivity (defaults to 1200 seconds or 20 minutes), or $SESSION_TIMEOUT seconds after the connection was established (defaults to 86400 seconds or 24 hours). o Counts the number of "Received:" and "Delivered-To:" headers, and rejects the message if more than $MAXHOPS of either are seen (defaults to 100). o All error responses are logged. o Handles (ignores) RFC 1869 extended parameters on the ``RCPT TO:'' and ``MAIL FROM:'' commands. o Initial greeting message is configureable by $SMTPGREETING. o Rejects bounce messages (messages with an empty envelope sender) that attempt to deliver to multiple recipients. o Optionally adds a fixup "Received:" header for hosts that have different incoming and outgoing hostnames or IPs. Set $FIXUP_RECEIVED_HOST and $FIXUP_RECEIVED_IP if you want this header added. BACK ENDS
smtpfront-echo Uses the echo backend to simply echo back the sender and recipient parameters, and the size of the data to the client. smtpfront-qmail Uses the ``qmail validation features'' to validate addresses, and the ``qmail backend'' to deliver messages. smtpfront-reject If $SMTPREJECT is set, all SMTP commands are rejected with this message. If the message starts with a "-", a permanent error number is used and the leading "-" is stripped. If $SMTPREJECT is not set, it execs its command line. SEE ALSO
pop3front(8) /usr/share/doc/mailfront/html/mailrules.html /usr/share/doc/mailfront/html/qmail-validate.html /usr/share/doc/mailfront/html/qmail-backend.html http://untroubled.org/mailfront/ smtpfront(8)
All times are GMT -4. The time now is 06:55 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy