About the Handiwork Cron Expression Explainer
The Cron Expression Explainer decodes standard Unix cron schedules into plain English. Paste a five- or six-field expression, try a preset example, and read an overall summary plus what each field — minute, hour, day of month, month, and day of week — actually means.
How to use the Handiwork Cron Expression Explainer
- Paste or type a cron expression in the input field.
- Click an example preset if you are learning the format.
- Read the summary and per-field breakdown to confirm the schedule.
Cron field order
A typical five-field cron expression is: minute (0–59), hour (0–23), day of month (1–31), month (1–12), day of week (0–7, where 0 and 7 are Sunday). Some systems add a sixth seconds field at the start. Asterisks mean “every” and slashes define steps like */15 for every 15 minutes.
What this tool does and does not do
The explainer validates common numeric patterns and translates them into readable language. It does not execute jobs, connect to your server, or compute the next run time. Named months, L/W/# tokens, and Quartz-specific extensions are not supported.
Frequently asked questions
Does this run or validate cron jobs on my server?
No. It explains what an expression means in plain English. It does not execute jobs or connect to your crontab.
Which cron format is supported?
Standard five-field Unix cron (minute hour day month weekday) and optional six-field expressions with a leading seconds field.
Why might my server schedule differ slightly?
Cron implementations vary by platform and timezone. Always confirm schedules in the environment where jobs actually run.