crontab的定时任务执行后都会给root发送一封邮件,通过以下方法可以防止这种情况
SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin #这是第一种方法,设置MAILTO参数为空 MAILTO="" HOME=/ # For details see man 4 crontabs # Example of job definition: # .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed #这是第二种方法,将命令定向到/dev/null 2>&1 0-59/30 * * * * root /opt/freemem/freemen >/dev/null 2>&1 #这是第三种方法,将命令定向到/dev/null 30 3 * * * root /backup/sh/mysql_data_bk.sh &>/dev/null
三种方法。