Cron Expression: Cron Every Half Hour

Learn how to create a cron expression for 'cron every half hour'. Runs at the top and bottom of every hour with our free cron generator tool.

Cron Expression

0,30 * * * *

Expression Breakdown

0,30
Minute
(0-59)
*
Hour
(0-23)
*
Day
(1-31)
*
Month
(1-12)
*
Weekday
(0-6)
Field Value Meaning
Minute 0,30 At minute 0,30
Hour * Any hour
Day of Month * Any day
Month * Any month
Day of Week * Any day of the week

This cron expression represents: cron every half hour

Cron Expression

0,30 * * * *

What This Expression Does

Runs at the top and bottom of every hour

Use Cases

This cron schedule is commonly used for:

How to Use

  1. Copy the cron expression above
  2. Open your crontab with crontab -e
  3. Add a new line with: 0,30 * * * * /path/to/your/script.sh
  4. Save and exit

Alternative Formats