RevealTheme logo

Cron Expression Builder

Build cron schedule expressions visually. Test them against next-fire times.

0 * * * *
Common presets

What is Cron Expression Builder?

Cron is the standard syntax for scheduling recurring tasks on Unix systems. The format is five fields: minute, hour, day-of-month, month, day-of-week. Modern systems extend this to six fields (adding seconds). This builder helps you construct expressions without memorizing the syntax.

Frequently asked questions

What does '*/5 * * * *' mean?
Every 5 minutes, any hour, any day. The '*/N' syntax means 'every N units of this field'.
How do I run something only on weekdays?
Use '0 9 * * 1-5' — 9am, Monday through Friday.

Related tools