cron のスケジューリング構文を理解する
次のうち、Python のモデルスクリプト(model.py)を「毎時、15分」に実行する正しい Crontab の構文はどれですか?(例:12:15 PM、1:15 AM、2:15 AM など)
Crontab の構文を思い出してください。
.---------------- minute (0 - 59)
| .------------- hour (0 - 23)
| | .---------- day of month (1 - 31)
| | | .------- month (1 - 12) OR jan,feb,mar,apr ...
| | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed ...
| | | | |
* * * * * command-to-be-executed
この演習はコースの一部です
