Trying to adjust a cron job to run every 90 min. It was previously running every 20 min, which was a simple cron job:

*/20 * * * * whatever

To change it to every 90, it seems like I need to split it into 2 jobs, I've done this:

0 0,3,6,9 * * * whatever
30 1,4,7,10 * * * whatever

Is this right? The job doesn't seem to kick off.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 6 down vote accepted

That should work, except that you need:

0 0,3,6,9,12,15,18,21 * * * whatever
30 1,4,7,10,13,16,19,22 * * * whatever

24 hour time :)

link|improve this answer
AHA! Brain fart over here =), thanks Bill. – Cory J Mar 17 '10 at 23:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.