内容简介:每个系统用户都可以有自己的要查看当前用户的要编辑
每个系统用户都可以有自己的 crontab
(在 /var/spool/cron/
下
要查看当前用户的 crontab
,输入 crontab -l
要编辑 crontab
,输入 crontab -e
要删除 crontab
,输入 crontab -r
基本格式 :
* * * * * command 分 时 日 月 周 命令
第 1 列表示分钟 1~59 每分钟用 * 或者 */1 表示 第 2 列表示小时 1~23(0 表示 0 点) 第 3 列表示日期 1~31 第 4 列表示月份 1~12 第 5 列标识号星期 0~6(0 表示星期天) 第 6 列要运行的命令 * 逗号( , ) 指定列表值。如: 1, 3, 4, 7, 8 * 中横线( - ) 指定范围值 如 1-6, 代表 1, 2, 3, 4, 5, 6 * 星号 ( * ) 代表所有可能的值
例子:
30 21 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每晚的21:30重启 apache
。
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
。
0,30 18-23 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示在每天 18 : 00 至 23 : 00 之间每隔30分钟重启 apache
。
0 23 * * 6 /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每星期六的11 : 00 pm重启 apache
。
* */1 * * * /usr/local/etc/rc.d/lighttpd restart
每一小时重启 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
0 4 1 jan * /usr/local/etc/rc.d/lighttpd restart
一月一号的4点重启 apache
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 使用certbot命令和定时任务(crontab)自动更新 let’s encrypt证书
- 域渗透——利用GPO中的计划任务实现远程执行(命令行实现原理与脚本细节)
- SpringBoot与异步任务、定时任务、邮件任务
- 订阅 + 定时任务重构后台主机操作任务
- 宏任务和微任务的一个小事
- Yii2 定时任务创建(Console 任务)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Big Java Late Objects
Horstmann, Cay S. / 2012-2 / 896.00元
The introductory programming course is difficult. Many students fail to succeed or have trouble in the course because they don't understand the material and do not practice programming sufficiently. ......一起来看看 《Big Java Late Objects》 这本书的介绍吧!