Cron Expression
0,30 * * * *
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.
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
0,30 * * * *
Runs at the top and bottom of every hour
This cron schedule is commonly used for:
crontab -e
0,30 * * * * /path/to/your/script.sh
0,30 * * * * /path/to/script.sh >> /var/log/cron.log 2>&1
0,30 * * * * /path/to/script.sh || mail -s "Cron job failed" admin@example.com