May 21, 2003 #1 apr1004 Programmer May 1, 2003 10 SG hi I've submiitted a job to crontab as follows 00 00 * * * 1.sh After the execution it sends mail to my login user. how can avoid the mail messages. Pls help me, apr1004.
hi I've submiitted a job to crontab as follows 00 00 * * * 1.sh After the execution it sends mail to my login user. how can avoid the mail messages. Pls help me, apr1004.
May 21, 2003 #2 Salem Programmer Apr 29, 2003 2,455 GB AFAIK, you only get mail if there is any output So redirect everything to the bit-bucket 00 00 * * * 1.sh 1>/dev/null 2>&1 Upvote 0 Downvote
AFAIK, you only get mail if there is any output So redirect everything to the bit-bucket 00 00 * * * 1.sh 1>/dev/null 2>&1