1. ホーム
  2. linux

[解決済み】毎週日曜日にcrontabジョブを実行する方法

2022-03-28 08:26:50

質問

毎週日曜日にcrontabのジョブを実行する方法を考えています。以下のようにすればうまくいくと思うのですが、正しく理解できているかどうかわかりません。以下は正しいですか?

5 8 * * 6

解決方法は?

ここでは、crontabのフォーマットについて説明します。

# 1. Entry: Minute when the process will be started [0-60]
# 2. Entry: Hour when the process will be started [0-23]
# 3. Entry: Day of the month when the process will be started [1-28/29/30/31]
# 4. Entry: Month of the year when the process will be started [1-12]
# 5. Entry: Weekday when the process will be started [0-6] [0 is Sunday]
#
# all x min = */x

ということで、これによるとあなたの 5 8 * * 0 は、毎週日曜日の8時5分に実行されます。