Home CRON

CRON

ready

Type a 5-field cron expression - get a plain-English explanation and the next fire times. Or use the per-field inputs to build one.


STDINinput
STDOUToutput

Field reference

FieldRangeSpecial
Minute0-59* any · , list · - range · / step
Hour0-23same
Day-of-Month1-31same
Month1-12also JAN-DEC
Day-of-Week0-6 (Sun=0)also SUN-SAT

No signup needed. All parsing happens in your browser.

Common cron patterns

The five-field expression below covers most real-world scheduling. Drop these into /etc/crontab, a Kubernetes CronJob spec, GitHub Actions schedule, or any standard cron runner.

ExpressionMeaning
* * * * *Every minute
0 * * * *Top of every hour
*/5 * * * *Every 5 minutes
0 9 * * 1-59:00 AM, Monday through Friday
30 2 * * *2:30 AM daily (a quiet window for nightly jobs)
0 0 1 * *Midnight on the 1st of every month
0 0 * * 0Midnight every Sunday (weekly cleanup)
15,45 * * * *15 and 45 minutes past every hour
0 */6 * * *Every 6 hours (00:00, 06:00, 12:00, 18:00)
0 9 1-7 * 19 AM on the first Monday of each month

Practical gotchas

Common questions

Is Cron Expression Builder & Explainer free to use?

Yes. The tool runs in your browser at no cost, with no signup required.

Where is the math performed?

Calculations run locally in your browser. Your inputs do not leave your device.

Are the rates and rules current?

We update sources when published rates change. For high-stakes decisions, verify against the official source linked on this page.