![Smile :)](./images/smilies/icon_smile.gif)
Ich muss einen Cronjob ausführen und das jede Minute. Allerdings von 3:00 Morgens bis 1:00 Morgens am nächsten Tag. Von 1:00 bis 3:00 soll er nicht laufen.
Kann ich sowas in der Crontab definieren?
If universal surveillance were the answer, lots of us would have moved to the former East Germany. If surveillance cameras were the answer, camera-happy London, with something like 500,000 of them at a cost of $700 million, would be the safest city on the planet.
—Bruce Schneier
Vermutlich weil du eine andere Implementierung von Cron hast, die das halt nicht kann.minimike hat geschrieben:Warum aber
* 3-1 * * * /var/www/intranet-live/command.sh export_queue export -a 1>/dev/null 2>/dev/null
Nicht läuft verstehe ich gerade nicht.
Code: Alles auswählen
num2 = high;
Code: Alles auswählen
ch = get_number(&num2, low, names, ch, file);
Code: Alles auswählen
if (num1 < low || num1 > high || num2 < low || num2 > high)
return EOF;
/* range. set all elements from num1 to num2, stepping
* by num3. (the step is a downward-compatible extension
* proposed conceptually by bob@acornrc, syntactically
* designed then implmented by paul vixie).
*/
for (i = num1; i <= num2; i += num3)
if (EOF == set_element(bits, low, high, i))
return EOF;
return ch;