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