私は自分のプロジェクトスケジュール(3週間)で実行する必要があるタスクを持っています。
設定できます クーロン 毎週、または(たとえば)毎月3週目にこれを実行するには - しかし、3週間ごとにこれを実行する方法を見つけることができません。
一時ファイル(または類似のファイル)を作成するスクリプトをハッキングして、実行されたのが3回目であることが判明する可能性がありますが、この解決策は匂いがします。
クリーンな方法でそれをすることができますか?
私は自分のプロジェクトスケジュール(3週間)で実行する必要があるタスクを持っています。
設定できます クーロン 毎週、または(たとえば)毎月3週目にこれを実行するには - しかし、3週間ごとにこれを実行する方法を見つけることができません。
一時ファイル(または類似のファイル)を作成するスクリプトをハッキングして、実行されたのが3回目であることが判明する可能性がありますが、この解決策は匂いがします。
クリーンな方法でそれをすることができますか?
回答:
crontabファイルでは、次のものだけを指定できます。
minute (0-59)
hour (0-23)
day of the month (1-31)
month of the year (1-12)
day of the week (0-6 with 0=Sunday)
そのため、どの週を適用するかを指定することは不可能です。
ラッパースクリプトを書くことが最善の選択肢かもしれません。
次のようにして、シェルスクリプトで週番号を取得できます。
date +%U
または
date +%V
あなたの週が日曜日に開始するのが好きか月曜日に開始するのかによって異なります。
だからあなたは使用することができます
week=$(date +%V)
check=$(( ($week - 1) % 3 ))
そして$ checkは、その年の1、4、7、...週で0になります。
実行間のタイムスタンプファイルを保存できる場合は、現在の日付だけに頼るのではなく、その日付を確認できます。
もしあなたの 見つける コマンドは以下の小数値をサポートします。 -mtime
(または -mmin
)( GNU findには両方があります 、 POSIXも必要ないようです )で、cronジョブを「調整」できます。 見つける そして タッチ 。
または、持っていれば 統計 ファイルの日付を「エポックからの秒数」として表示することをサポートするコマンド(例: 統計 Gnu coreutilsから (他の実装も)、あなたはあなた自身の比較をすることができます 日付 、 統計 、およびシェルの比較演算子(とともに) タッチ タイムスタンプファイルを更新します。あなたも使うことができるかもしれません ls の代わりに 統計 フォーマットが可能な場合(例: GNU fileutilsからのls )
以下はPerlプログラムです(私はそれを呼びました n-hours-ago
これはタイムスタンプファイルを更新し、元のタイムスタンプが十分古かった場合は正常に終了します。その用法テキストは、cronジョブを抑制するためにcrontabエントリーでそれを使用する方法を示しています。また、「夏時間」の調整と前回の実行からの「遅い」タイムスタンプの処理方法についても説明します。
#!/usr/bin/perl
use warnings;
use strict;
sub usage {
printf STDERR <<EOU, $0;
usage: %s <hours> <file>
If entry at pathname <file> was modified at least <hours> hours
ago, update its modification time and exit with an exit code of
0. Otherwise exit with a non-zero exit code.
This command can be used to throttle crontab entries to periods
that are not directly supported by cron.
34 2 * * * /path/to/n-hours-ago 502.9 /path/to/timestamp && command
If the period between checks is more than one "day", you might
want to decrease your <hours> by 1 to account for short "days"
due "daylight savings". As long as you only attempt to run it at
most once an hour the adjustment will not affect your schedule.
If there is a chance that the last successful run might have
been launched later "than usual" (maybe due to high system
load), you might want to decrease your <hours> a bit more.
Subtract 0.1 to account for up to 6m delay. Subtract 0.02 to
account for up to 1m12s delay. If you want "every other day" you
might use <hours> of 47.9 or 47.98 instead of 48.
You will want to combine the two reductions to accomodate the
situation where the previous successful run was delayed a bit,
it occured before a "jump forward" event, and the current date
is after the "jump forward" event.
EOU
}
if (@ARGV != 2) { usage; die "incorrect number of arguments" }
my $hours = shift;
my $file = shift;
if (-e $file) {
exit 1 if ((-M $file) * 24 < $hours);
} else {
open my $fh, '>', $file or die "unable to create $file";
close $fh;
}
utime undef, undef, $file or die "unable to update timestamp of $file";
exit 0;