Translate a cron expression into plain English and preview its next run times — including the day-field OR rule most tools get wrong.
Ctrl + Enter to run
Builds a five-field cron expression and states in plain English which times it selects, which is the check worth doing before deploying a schedule. Cron syntax is easy to write and genuinely hard to read back.
The classic trap is the two day fields. When both day-of-month and day-of-week are restricted, cron runs the job when *either* matches, so `0 9 1-7 * 1` fires on the first seven days and every Monday — about 76 times a year rather than 12. A field starting with `*`, including `*/2`, counts as unrestricted.