上午 8 点至晚上 8 点每分钟运行一次 cron

上午 8 点至晚上 8 点每分钟运行一次 cron

我需要在早上 8 点到晚上 8 点每分钟运行一次 cron 作业。

我的代码是:*/01 8-20 * * * user /usr/bin/php -f script.php > /dev/null

但似乎失败了……

答案1

正确的做法是

* 8-20 * * * user /usr/bin/php -f script.php > /dev/null

相关内容