本文摘自:https://blog.csdn.net/qq_39377418/article/details/89374673
root 身份登录到命令行
输入 crontab -e (注:不要输入 crontab -r 了,因为 e 和 r 挨着的,r 就是 remove )
按下 a 键进入到编辑模式
输入 0 */1 * * * cd /home/work; python3 test.py
或者 */60 * * * * cd /home/work; python3 test.py
同时按下 ctrl+c
退出编辑模式
同时按下 shift+q:
输入 wq
保存退出crontab
或者直接修改
/etc/crontab
文件,之后用crontab /etc/crontab
生效
下面是每隔多少分钟,每隔多少小时,每天/每周/每月/每年的crontab的归纳总结
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:crontab简介