即使在重新引导和启动时也每 30 分钟运行一次 cron 作业

即使在重新引导和启动时也每 30 分钟运行一次 cron 作业

这是每 30 分钟的脚本

00,30 * * * * [path_to_file]/myscript.sh

每次重新启动时运行相同的脚本是什么

@reboot 00,30 * * * * [path_to_file]/myscript.sh

上面这行对吗?

答案1

不。这是两个单独的规则。

man 5 crontab
       Instead  of  the  first  five  fields, one of eight special strings may
       appear:

              string         meaning
              ------         -------
              @reboot        Run once, at startup.

相关内容