0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

crontab入門

Last updated at Posted at 2017-12-19

#crontabとは

crontabとはコマンドの定時実行のスケジュール管理を行うために用いられるコマンドである。
どの時間にどのようなコマンドを実行するか設定することで指定の時間が来る度に指定のコマンドを自動で実行してくれる。

#利用方法
$crontab -l //現在設定されているcrontabがあるか確認
$crontab -e //crontab編集・設定
/---エディタ(vim)が開く---/
* * * * * echo "test" >> cron.txt  //設定するcronを書き込む
/---エディタ(vim)を閉じる---/

#入力例
* * * * * echo "test" >> cron.txt 
分時日月曜日       内容         追記  出力先(ログ)

#削除するとき
$crontab -r
cronを全て削除してしまうので、-eでエディタ内で消すのが○

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?