Cron - run task every 90 min.
Posted
by Cory J
on Server Fault
See other posts from Server Fault
or by Cory J
Published on 2010-03-17T23:24:34Z
Indexed on
2010/03/17
23:31 UTC
Read the original article
Hit count: 444
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.
© Server Fault or respective owner