Cron

如果“週期實用程序旨在由 cron 呼叫”,為什麼手冊頁暗示週期有自己的時間?

  • December 27, 2016

PERIODIC(8)手冊頁:

定期實用程序旨在由 cron(8) 呼叫以執行位於指定目錄中的 shell 腳本。

必須指定以下一個或多個參數:

 daily    Perform the standard daily periodic executable run.  This usu-
          ally occurs early in the morning (local time).

 weekly   Perform the standard weekly periodic executable run.  This usu-
          ally occurs very early on Saturday mornings.

例如,為什麼它說每週一次,它“通常發生在星期六早上很早”?是否建議使用者將 cron-job 設置為periodic weekly“星期六早上很早”?

預設情況下,您的/etc/crontab文件包含這樣的行:

# Perform daily/weekly/monthly maintenance.
1       3       *       *       *       root    periodic daily
15      4       *       *       6       root    periodic weekly
30      5       1       *       *       root    periodic monthly

顯然,週六凌晨 4:15 只是可以為您的每周維護設置的眾多可能時間之一。除了大多數人不會更改這些 cron 作業的預設設置這一事實之外,該文件並沒有向我“建議”任何東西,因此這些作業“通常”在其預設時間執行。

引用自:https://unix.stackexchange.com/questions/332972