Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
mail in unix at specific time
Name: sureshht Date: October 3, 2007 at 14:04:06 Pacific OS: AIX 5L CPU/Ram: 4 CPU/8GB RAM Product: RS6000
Comment:
Hi,
I would like to send mail at specific time everyday. It is a part of the script that sends out mail every 15 minutes. I need to mail the end of the day report in the evening.
I tried this,but doesnot work:
tstamp= $(date +\%H:\%M) if [ ${tstamp}== 17:30 ]; then echo "End of the day report" >>$tmpfile2 mailit=true fi
if [ "$mailit" = "true" ]; then uuencode ${tmpfile2} ${tmpfile2} | mailx -s "${ORACLE_SID}: EOD Report" $maillist fi
Summary: hello all, I wanted to run matlab programs over the weeknends. now i needed to know how could i start matlab in unix at any given time. If anyone knows how to run matlab any given time that would be ...
Summary: hi, I want utility like Doskey in unix. by using doskey utility, if we press up or down arrows then display previous commands at the command prompt. is there any utility like in unix at the command ...
Summary: Hello, I want to know how to calculate time difference in unix shell script. Time command in unix will not solve my problem because it calculates total time taken by a script. See the examle below. ...