Operating System - Tru64 Unix
1826499 Members
1567 Online
109692 Solutions
New Discussion

cronjob without mail notification

 
SOLVED
Go to solution
Steven Chen_1
Super Advisor

cronjob without mail notification

Hi,

I have one cronjob that I don't want mailing notification to server itself. Is there way to have it send to /dev/null and don't store in /var/mail/root?

the cron is:

01 8,9,10 * * 1-5 sh /disk1/users/abc.action

Thanks,

Steven

Steve
1 REPLY 1
Victor Semaska_3
Esteemed Contributor
Solution

Re: cronjob without mail notification

Steven,

Change the command to:

01 8,9,10 * * 1-5 sh /disk1/users/abc.action > /dev/null 2>&1

Vic
There are 10 kinds of people, one that understands binary and one that doesn't.