How can I set cron to run certain commands every one and a half hours?
|
That's not possible with a single expression in normal The best you could do without modifying the code is:
These might be compressible, depending on the version of cron you have to:
|
|||
|
|
|
Is there a good reason why you can't use 1 hour or 2 hours? It would be simpler for sure. I haven't tried this personally, but you can find some info here on getting cron to run every 90 minutes: http://keithdevens.com/weblog/archive/2004/May/05/cron An excert from the above link:
|
|||||||||||||||||
|
|
Two lines in the crontab. Along the lines of:
|
|||
|
|
|
You could do it with two crontab entries. Each runs every three hours and they are offset by 90 minutes something like this: 0 0,3,6,9,12,15,18,21 * * * 30 1,4,7,10,13,16,19,22 * * * |
|||
|
|
|
You could also use fcron which also accepts more complex time specifications such as :
|
|||
|
|