タグ

crontabに関するamayanのブックマーク (4)

  • Cronwrap

    README Cronwrap is a utility that offers more control over the execution of a cron job than the standard cron daemon allows.  It can ensure and report that the job completes  within  a specified  time  period. It can email and/or log any output produced from the job. It reports on the exit status of the job. This was developed at the University of Wollongong to manage the email output from schedul

    amayan
    amayan 2009/01/15
    crontabの実行結果レポーティングツール
  • crontabで月末に実行させたし

    crontabで、月末に処理をしたいというものがあってそのソリューションを探していたら こんなのを発見したので、ご紹介。 55 23 28-31 * * /usr/bin/test $( date -d '+1 day' +%d ) -eq 1 && /path/to/script ようは、testにて、次の日が1日かどうかを確認して、OKだったら/path/to/scriptを実行させる。 時分はご自由にどうぞ。28-31はとりあえずしかたないな。 と、こんなこと調べてたけど、実は最近のcrontabだとそういう指定がピロっとできたりしたらショックだな…。

  • crontabの書き方

    sorry Japanese only 最終更新日 2014/08/13 page size = Mbyte 例題を沢山書いた方が分かりやすいだろうと思うので、例題のみです。 43 23 * * * 23:43に実行 12 05 * * *    05:12に実行 0 17 * * * 17:00に実行 0 17 * * 1 毎週月曜の 17:00に実行 0,10 17 * * 0,2,3 毎週日,火,水曜の 17:00と 17:10に実行 0-10 17 1 * * 毎月 1日の 17:00から17:10まで 1分毎に実行 0 0 1,15 * 1 毎月 1日と 15日と 月曜日の 0:00に実行 42 4 1 * *     毎月 1日の 4:42分に実行 0 21 * * 1-6   月曜日から土曜まで 21:00に実行 0,10,20,30,40,50 * * * * 10分おきに

  • crontabコマンドの使い方: UNIX/Linuxの部屋

    最終更新 2019-01-15 UNIX/Linuxcrontab コマンドは定期的に実行するコマンドを登録・確認・管理するコマンドである。 UNIX・Linux では cron または crond というデーモンが常時起動しており、指定の時刻になると指定のコマンドを実行してくれる。crontab コマンドを使うと、その設定ファイルを表示・設定・更新・削除することができる。

    crontabコマンドの使い方: UNIX/Linuxの部屋
  • 1