ubuntu 定时任务 Crontab

时间:2022-03-02 08:11:50

常用命令:

crontab -l //列出某个用户cron服务的详细内容
crontab -r //删除没个用户的cron服务
crontab -e //编辑某个用户的cron服务

编辑一项任务:
ubuntu 定时任务 Crontab
例如:
每分钟执行一次

* * * * * python hello.py

每小时的第12分钟执行一次

12 * * * * python hello.py

每小时的第12分钟和第30分钟执行一次

12,30 * * * * python hello.py

每天的5点12分钟执行一次

12 5 * * * python hello.py

每月的1号的5点12分钟执行一次

12 5 1 * * python hello.py

每年的6月1号的5点12分钟执行一次

12 5 1 6 * python hello.py

每周1的5点12分钟执行一次(周日是0)

12 5 * * 1 python hello.py

每3个小时的第12分钟执行一次

12 */3 * * * python hello.py

每小时的0-5分钟, 每分钟执行一次

0-5 * * * * python hello.py