Linux CRON
インストール
yum install crontabs
設定
設定確認
croptab -l
設定ファイル
/etc/crontab
設定コマンド
crontab -e
分 | 時 | 日 | 月 | 曜日 | コマンド | 例 | 機能 |
---|---|---|---|---|---|---|---|
00 | 10 | * | * | 4 | test.sh | 00 10 * * 4 /~/test.sh |
毎週水曜日10:00 |
*/10 | * | * | * | * | test.sh | */10 * * * * /~/test.sh |
10分毎に実行 |
0 | 2 | * | * | * | test.sh | 0 2 * * * /~/test.sh |
2時に実行 |
0 | 2 | 01 | * | * | test.sh | 0 2 01 * * /~/test.sh |
毎月1日2時に実行 |
設定消去
crontab -r
実行ログ
tail -f /var/log/cron