How to run cron jobs every 5, 10, 15 or 30 minutes?

Better Stack Team
Updated on January 9, 2023

Every minute cron goes through all the crontabs and looks for the jobs that should be executed. The exact time of the execution can be specified using the cron syntax. Whenever the parameter matches the current date and time cron job is executed.

 
# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  *  command to be executed
*  *  *  *  *  echo 'Hello world!'

You can use certain operators to specify the time:

  • * is used as any value
  • - is used to state the range of values (e.g. 1 - 5)
  • , is used to specify multiple values
  • / is used to specify step values that can be used in conjunction with ranges (e.g. 1-10/2 is the same as 1,3,5,7,9)

Every 5 minutes

 
*/5  * * * * echo 'Hello world!'

Every 10 minutes

 
*/10  * * * * echo 'Hello world!'

Every 15 minutes

 
*/15  * * * * echo 'Hello world!'

Every 30 minutes

 
*/30  * * * * echo 'Hello world!'

Using the */n you can specify the time of the jobs that will be executed every n minutes.

🔭 Want to get alerted when your Cron doesn't run correctly?

Go to Better Uptime and start monitoring them in 5 minutes.

Got an article suggestion? Let us know
Explore more
Licensed under CC-BY-NC-SA

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

We are hiring.

Software is our way of making the world a tiny bit better. We build tools for the makers of tomorrow.

Explore all positions →

Reliability is the
ultimate feature

Delightful observability tools that turn your logs & monitoring into a secret weapon for shipping better software faster.

Explore Better Stack