Crontab不运行所有脚本/作业

时间:2014-03-28 11:45:44

标签: php unix curl cron crontab

我有这个crontab

company@shell:~$ crontab -l

MAILTO="my@email.com"
* * * * * /usr/bin/curl http://www.company.com/crontest.php > null 2>null
2 * * * * /usr/bin/curl http://www.company.com/crontest-2.php > null 2>null

第一个脚本完美无缺,但第二个脚本没有运行。

这里有什么问题?

1 个答案:

答案 0 :(得分:1)

将其用于第二个,其中url在双引号内:

2 * * * * /usr/bin/curl "http://www.company.com/crontest-2.php" > null 2>null

您的脚本因-而终止。检查你的cron日志。