标签:
一,写入格式:
* * * * * command
minute hour day month week command
其中:
二,大部分在 crontab 计划任务中都会年到未尾带 >/dev/null 2>&1,是什么意思呢?
command > file 2>file 与 command > file 2>&1 有什么区别呢?
样例说明:
10 03 * * * python /home/sysuser/shell/hello.py > /home/sysuser/shell/hello.log 2>&1
上面的例子:每天的凌晨三点十分执行hello.py,然后把日志写入到hello.log中
45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart
上面的例子:表示每月1、10、22日的4 : 45重启apache。
10 1 * * 6,0 /usr/local/etc/rc.d/lighttpd restart
上面的例子:表示每周六、周日的1 : 10重启apache
* 23-7/1 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子:晚上11点到早上7点之间,每隔一小时重启apache
0 11 4 * mon-wed /usr/local/etc/rc.d/lighttpd restart
每月的4号与每周一到周三的11点重启apache
标签:
原文地址:http://www.cnblogs.com/lovychen/p/5291637.html