shell任务定时器crontab(九)

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-13 14:50:42

以下是 crontab 文件的格式:

{minute} {hour} {day-of-month} {month} {day-of-week} {full-path-to-shell-script} 

minute: 区间为 0 – 59 

hour: 区间为0 – 23 

day-of-month: 区间为0 – 31 

month: 区间为1 – 12. 1 是1月. 12是12月. 

Day-of-week: 区间为0 – 7. 周日可以是0或7.

Crontab 选项

以下是 crontab 的有效选项:

crontab –e : 修改 crontab 文件. 如果文件不存在会自动创建。 

crontab –l : 显示 crontab 文件。 

crontab -r : 删除 crontab 文件。

crontab -ir : 删除 crontab 文件前提醒用户。

示例:

输入crontab -e,进入编辑器,输入表达式即可,如下图:每两分钟执行一次

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!