Cron Expression Explainer
Turn a cryptic five-field cron schedule into a sentence you can actually read.
Cron Expression Explainer
🔒 Nothing you enter is sent anywhere or stored. All processing happens in your browser.
How it works
Cron is the scheduling syntax used by Unix systems, CI pipelines, and countless job runners. A standard expression has five fields — minute, hour, day-of-month, month, and day-of-week — and each can be a number, a list, a range, or a step like */15. It's powerful but famously hard to read at a glance.
This explainer parses each field and builds a plain-English sentence describing when the job fires, understanding wildcards (*), steps (*/n), ranges (1-5), lists (1,3,5), and named months and weekdays (mon, jan). Use the quick buttons to see common patterns, then tweak the fields to match your own schedule.
It runs entirely in your browser and is meant as a readability aid; always confirm the exact behaviour against your specific cron implementation, since a few systems extend the syntax.