84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
There is a log.py file in /data/log/
How to let him execute the log.py file at 2 am every day
linux ubuntu14.04
Or how to set the log.py file to be executed once every day at 2 am
业精于勤,荒于嬉;行成于思,毁于随。
Can set up scheduled tasks: crontab -e编辑加入:0 2 * * * /data/log/log.py保证文件log.py的格式和权限正确,保证服务crondRun normally.
crontab -e
0 2 * * * /data/log/log.py
crond
Use crontab Please refer to https://www.cyberciti.biz/faq...
There is a scheduled command crontab
Baidu crontab
Can set up scheduled tasks:
crontab -e
编辑加入:
0 2 * * * /data/log/log.py
保证文件log.py的格式和权限正确,保证服务
crond
Run normally.Use crontab
Please refer to https://www.cyberciti.biz/faq...
There is a scheduled command crontab
Baidu crontab