Open jianpeng957 opened 5 years ago
55 12 * * * cd /home/{username}/{source code dir}/ && python3 -u pandalearning.py {username} >> mylog.log 2>&1
上述脚本已经踩了crontab的所有坑,只需要保证源代码能够正常执行即可
good job 顺带一提,可能需要
service cron reload /*重新载入配置*/ service cron restart / *重启服务*/
非Ubuntu 的 other linux 为crond好像
crond
55 12 * * * cd /home/{username}/{source code dir}/ && python3 -u pandalearning.py {username} >> mylog.log 2>&1
上述脚本描述的是每天中午12点55分时,首先执行cd命令到源代码的文件夹下,然后执行源代码(-u: 关闭python输出缓冲)上述脚本已经踩了crontab的所有坑,只需要保证源代码能够正常执行即可