使用cron每90分钟运行一次任务


10

尝试将Cron作业调整为每90分钟运行一次。它以前每20分钟运行一次,这是一个简单的cron工作:

*/20 * * * * whatever

要将其更改为每90个,似乎我需要将其拆分为2个工作,我已经这样做了:

0 0,3,6,9 * * * whatever
30 1,4,7,10 * * * whatever

这是正确的吗?这项工作似乎还没有开始。

Answers:


17

那应该工作,除了您需要:

0 0-21/3 * * * whatever
30 1-22/3 * * * whatever

24小时时间:)


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.