Cron

cron 文件中的 * * * * *(五個星號)是什麼意思?

  • May 20, 2016

舊版 crontab 文件中的第一個非註釋行以五個星號開頭:

* * * * * ([a_command]) >/dev/null 2>&1

作者已經走了,所以我不知道他們的意圖全萬用字元對(Solaris 8)cron 意味著什麼? 這裡的投注要麼執行一次,要麼連續執行,要麼從不執行,遺憾的是范圍很廣。

如果您想知道前面的註釋行,那就是“不要刪除”。

注意:這個 cron 文件正在執行。此問題與有關損壞的 cron 文件或需要故障排除的 cron 文件的問題不是重複的。

每個月的每個星期的每一天的每一分鐘,該命令都會執行。

man 5 crontab有這方面的文件。如果您只是鍵入man crontab,您將獲得 crontab命令的文件。您想要的是手冊頁的第 5 節,其中涵蓋了系統配置文件,包括該/etc/crontab文件。為了將來參考,這些部分描述在man man

  1   Executable programs or shell commands
  2   System calls (functions provided by the kernel)
  3   Library calls (functions within program libraries)
  4   Special files (usually found in /dev)
  5   File formats and conventions eg /etc/passwd
  6   Games
  7   Miscellaneous  (including  macro  packages and conven‐
      tions), e.g. man(7), groff(7)
  8   System administration commands (usually only for root)
  9   Kernel routines [Non standard]

引用自:https://serverfault.com/questions/162388