如何在机器启动时执行 cron?

如何在机器启动时执行 cron?

我正在尝试cron为我的机器制作一个。每次启动我的电脑时,是否可以制作一个?

有些方法如下:

# File : /tmp/crontab.LgVuXf/crontab

uptime ... command

答案1

如 中所述man 5 crontab,其中包含 crontab 文件的格式:

除了前五个字段,还可能出现八个特殊字符串之一:

          string         meaning
          ------         -------
          @reboot        Run once, at startup.
          @yearly        Run once a year, "0 0 1 1 *".
          @annually      (same as @yearly)
          @monthly       Run once a month, "0 0 1 * *".
          @weekly        Run once a week, "0 0 * * 0".
          @daily         Run once a day, "0 0 * * *".
          @midnight      (same as @daily)
          @hourly        Run once an hour, "0 * * * *".

因此,您应该能够在表单中添加 crontab 行

@reboot  bash /full/path/to/the/script 

您可以使用命令crontab -e来编辑该文件,或者直接输入---查看man crontab详细信息。

相关内容