文章目录

crontab管理计划任务

行云流水
2022-07-09 / 1 评论 / 284 阅读 / 正在检测是否收录...

前言

linux系统计划任务,使用者周期性执行脚本,实现功能。如定期备份。

语法

# 每五分钟运行一次脚本
*/5 * * * *  root  /root/test/test.sh

# 3:00 4:00 5:00 6:00  运行一次 /root/test/test.sh
0 3-6 * * *  root  /root/test/test.sh

# 每小时的第5分钟执行一次test.sh
5 * * * *   root  /root/test/test.sh

# 每天的5点30 执行一次 test.sh
30 5 * * *  root  /root/test/test.sh

# 每月8号7点30 执行一次 test.sh
30 7 8 * *  root  /root/test/test.sh

# 每年6月8号5点30 执行一次 test.sh
30 5 8 6 *  root  /root/test/test.sh

# 每周日6:30 执行 test.sh
30 6 * * 0  root  /root/test/test.sh

#每天10:45-10:54期间每分钟执行一次 view-test.sh
45-54/1 10 * * *  root   /root/test/view-test.sh

评论 (1)

取消
只有登录/注册用户才可评论