定时任务时间 13 * * * *

定时任务时间 13 * * * *

这听起来肯定是个愚蠢的问题,但是

我想确认一下 crontab 时间

13 * * * *

它真的意味着在每周每天每小时的第 13 分钟启动等等吗?提前谢谢

答案1

我可以推荐克朗沙箱尝试一下,安全总比后悔好。

那里的输出也证实了你是对的。

答案2

是的。为了避免将来出现此类问题,在 crontab 文件中包含这样的标头很有用:

#minute (0-59),
#|      hour (0-23),
#|      |       day of the month (1-31),
#|      |       |       month of the year (1-12),
#|      |       |       |       day of the week (0-6 with 0=Sunday).
#|      |       |       |       |       commands

13      *       *       *       *       command

相关内容