php sendDiaryMail 的 Crontab 错误

php sendDiaryMail 的 Crontab 错误

我添加

30 22 * * * php /www/wwwroot/easy_xyz/xcat sendDiaryMail

在我的crontab -e行中喜欢这样:

30 22 * * * php /www/wwwroot/easy_xyz/xcat sendDiaryMail
55 0 * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" > /dev/null

但出现错误:

crontab: installing new crontab
"/tmp/crontab.d7MGaW":1: bad minute
errors in crontab file, can't install.
Do you want to retry the same edit?

问题出在哪里,我没找到。

答案1

确保crontab文件以字符结尾。

答案2

请尝试以下操作:

30 20 * * * /usr/bin/php /www/wwwroot/easy_xyz/xcat sendDiaryMail

相关内容