โฐ

Cron Expression Parser and Explainer

Parse and explain cron expressions with next run times

minhourdaymonthweekday

Explanation

Minute0
Hour9
Day of Monthevery day of month
Monthevery month
Day of WeekMon through Fri

Next 5 executions

1Thu, Apr 2, 09:00 AM
2Fri, Apr 3, 09:00 AM
3Mon, Apr 6, 09:00 AM
4Tue, Apr 7, 09:00 AM
5Wed, Apr 8, 09:00 AM

Presets

How to Use

  1. 1

    Type or paste a cron expression in the input field (5 fields: minute hour day month weekday).

  2. 2

    Read the plain-English explanation for each field below the input.

  3. 3

    Check the "Next 5 executions" section to see exactly when the job will run.

Frequently Asked Questions

What is a cron expression? โ–ผ
A cron expression is a string of 5 space-separated fields that defines a schedule for automated tasks on Unix-like systems. The fields are: minute (0-59), hour (0-23), day of month (1-31), month (1-12), and day of week (0-6, where 0 is Sunday).
What does */15 mean? โ–ผ
*/15 means "every 15 units". In the minute field, */15 runs the job at 0, 15, 30, and 45 minutes past the hour. The asterisk means "starting from the minimum value", and the number after the slash is the step.