How to Use
- 1
Type or paste a cron expression in the input field (5 fields: minute hour day month weekday).
- 2
Read the plain-English explanation for each field below the input.
- 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.