यदि आप रन के बीच टाइमस्टैम्प फ़ाइल को सहेज सकते हैं, तो आप केवल वर्तमान तिथि पर निर्भर होने के बजाय इसकी तिथि की जांच कर सकते हैं।
यदि आपकी खोज कमांड -mtime
(या है -mmin
) के लिए आंशिक मानों का समर्थन करती है ( GNU खोज में दोनों हैं , तो POSIX की आवश्यकता नहीं लगती है ), आप खोज और स्पर्श के साथ क्रोन नौकरियों को 'थ्रॉटल' कर सकते हैं ।
या, यदि आपके पास एक स्टेटमेंट है, जो फ़ाइल की तारीखों को "सेकंड के बाद से" के रूप में दिखाने का समर्थन करता है (जैसे कि ग्नू कोरुटिल्स से स्टेट , अन्य कार्यान्वयन भी), तो आप डेट , स्टेट और शेल के तुलना ऑपरेटरों का उपयोग करके अपनी खुद की तुलना कर सकते हैं (साथ में) एक टाइमस्टैम्प फ़ाइल को अद्यतन करने के लिए स्पर्श के साथ )। यदि आप स्वरूपण (जैसे GNU फ़ाइलल से ls ) कर सकते हैं, तो आप स्टेट के बजाय ls का उपयोग करने में सक्षम हो सकते हैं ।
नीचे एक पर्ल प्रोग्राम है (मैंने इसे बुलाया n-hours-ago
) जो टाइमस्टैम्प फ़ाइल को अपडेट करता है और सफलतापूर्वक बाहर निकलता है अगर मूल टाइमस्टैम्प पर्याप्त पुराना था। इसके उपयोग पाठ से पता चलता है कि क्रोनब की प्रविष्टि में इसका उपयोग क्रोन जॉब के लिए कैसे किया जाता है। यह "दिन के उजाले की बचत" के समायोजन और पिछले रनों से 'देर' के टाइमस्टैम्प को कैसे प्रबंधित करता है, इसका भी वर्णन करता है।
#!/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;