Cron:设置多分钟

时间:2012-03-30 15:17:11

标签: cron crontab

使用cron,如果我想每5分钟运行一次命令,那就是:

*/5 * * * * command

但是,如果我想专门设置一个会议记录列表呢?

比如过去5点,过去18分钟和每小时15分钟?我在猜这个:

5,18,45 * * * *

1 个答案:

答案 0 :(得分:29)

是的,您指定的解决方案是正确的。

0,5,55 * * * * command       #run the command at the top of the hour, at the
                             #5 minute mark, at at the 55 minute mark.