在 crontab 作业中使用未定义的时间

在 crontab 作业中使用未定义的时间

如果你编写如下 crontab 任务,会发生什么情况:

* * * * * the command

它会每分钟执行一次吗,还是怎样?

答案1

它将在每个月的每一天、每小时的每一分钟执行。

# * * * * *  command to execute
# ┬ ┬ ┬ ┬ ┬
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ └───── day of week (0 - 7) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)
# │ │ │ └────────── month (1 - 12)
# │ │ └─────────────── day of month (1 - 31)
# │ └──────────────────── hour (0 - 23)
# └───────────────────────── min (0 - 59)

相关内容