Crontab定时命令格式

by Web全栈工程师 on 2011 年 05 月 01 日

下面是crontab的格式:

分 时 日 月 星期 要运行的命令

第1列分钟1~59
第2列小时1~23(0表示子夜)
第3列日1~31
第4列月1~12
第5列星期0~6(0表示星期天)
第6列要运行的命令

这里有crontab文件条目的一些例子:

30 21 * * * reboot
上面的例子表示每晚的21:30重启服务器

45 4 1,10,22 * * reboot
上面的例子表示每月1、10、22日的4 : 45重启服务器

10 1 * * 6,0 reboot
上面的例子表示每周六、周日的1 : 10重启服务器

0,30 18-23 * * * reboot
上面的例子表示在每天18 : 00至23 : 00之间每隔30分钟重启服务器

0 23 * * 6 reboot
上面的例子表示每星期六的11 : 00 pm重启服务器

* */1 * * * reboot
每一小时重启服务器

* 23-7/1 * * * reboot
晚上11点到早上7点之间,每隔一小时重启服务器

0 11 4 * mon-wed reboot
每月的4号与每周一到周三的11点重启服务器

0 4 1 jan * reboot
一月一号的4点重启服务器

原创文章,转载请注明:转载自Web开发笔记 | Crontab定时命令格式

本文链接地址:https://www.magentonotes.com/crontab-command.html

Comments on this entry are closed.

Previous post:

Next post: