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
给我你的怀抱2017-05-16 13:36:32
Can set up scheduled tasks: crontab -e
编辑
加入:0 2 * * * /data/log/log.py
保证文件log.py的格式和权限正确,保证服务crond
Run normally.