The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




Thread: Single Cron
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #6 (permalink)  
Old 01-16-2009
Rhije Rhije is offline
Registered User
  
 

Join Date: Dec 2008
Posts: 103
A cron can only run once every 15 minutes. So you can have multiple crons, each individual one can not run more often then once every 15minutes. I would also suggest staggering the times that they run.

*/15 * * * *
*/15+2 * * * *
*/15+4 * * * *

At least I think that works >_<