Linux 定时执行 Crontab 用法说明 - ITBOOK.COM
作者:互联网
本文来源:itbook.com
基本操作
编辑crontab -e
查看crontab -l
基本格式 :
* * * * * command
分 时 日 月 周 命令
第 1 列表示分钟 1~59 每分钟用 * 或者 */1 表示
第 2 列表示小时 0~23(0 表示 0 点)
第 3 列表示日期 1~31
第 4 列表示月份 1~12
第 5 列标识号星期 0~6(0 表示星期天)
第 6 列要运行的命令
例子
crontab 文件的一些例子。
#每晚的21:30重启apache: 30 21 * * * /usr/local/etc/rc.d/lighttpd restart #每月1、10、22日的4 : 45重启apache: 45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart #每周六、周日的1 : 10重启apache: 10 1 * * 6,0 /usr/local/etc/rc.d/lighttpd restart #每天18 : 00至23 : 00之间每隔30分钟重启apache: 0,30 18-23 * * * /usr/local/etc/rc.d/lighttpd restart #每星期六的11 : 00 pm重启apache: 0 23 * * 6 /usr/local/etc/rc.d/lighttpd restart #每一小时重启apache: 0 */1 * * * /usr/local/etc/rc.d/lighttpd restart #晚上11点到早上7点之间,每隔一小时重启apache: * 23-7/1 * * * /usr/local/etc/rc.d/lighttpd restart #每月的4号与每周一到周三的11点重启apache: 0 11 4 * mon-wed /usr/local/etc/rc.d/lighttpd restart #一月一号的4点重启apache: 0 4 1 jan * /usr/local/etc/rc.d/lighttpd restart
本文来源:https://itbook.com/article/1584847795520
标签:lighttpd,Crontab,用法说明,usr,ITBOOK,rc,apache,local,restart 来源: https://www.cnblogs.com/itbook-com/p/12545126.html