转载自https://hanxv.cn/index.php/archives/46.html
使用
#查看
crontab -l
#编辑
crontab -e
格式说明
[minute] [hour] [day] [mounth] [week] [command]
- minute:分,值为0–59
- hour:时,值为1–23
- day:天,值为1–31
- month:月,值为1–12
- week:星期,值为0–6 【0代表星期日,1代表星期一,依此类推】
- command:要执行的程序路径【绝对路径】
更多实例
1.每天6:00执行
0 6 \* \* \* /bin/sh /root/root.sh
2.每周六凌晨4:00执行
0 4 \* \* 6 /bin/sh /root/root.sh
3.每周六凌晨4:05执行
5 4 \* \* 6 /bin/sh /root/root.sh
4.每周一到周五的11:41开始,每10分钟执行一次
1-59/10 11-23 \* \* 1-5 /bin/sh /root/root.sh
5.每天的10:31开始,每隔2小时执行一次
31 10-23/2 \* \* \* /bin/sh /root/root.sh