Crontab没有按预期运行

问题描述 投票:-1回答:1

我设置了crontab,但什么也没发生,

crontab -l
03 04-22 * * * python /me/radio_alarm.py

是什么原因,该命令在Linux上按预期工作。

python macos cron
1个回答
0
投票

存储脚本stdout和stderr:

03 04-22 * * * python /me/radio_alarm.py > log.txt 2>&1 

然后检查log.txt,看错了什么。

对于crontab日志,请查看/ var / log / cron

© www.soinside.com 2019 - 2024. All rights reserved.