Cron Expression Açıklayıcı

Paste a cron expression and understand exactly what it does.

Ad Space
Ad Space

Common Examples

How to Read Cron Expressions

A standard cron expression has 5 fields separated by spaces:

minute hour day month weekday

* · any value   */n · every n units   1,5 · at 1 and 5   1-5 · range 1 through 5

Ranges: minute (0-59), hour (0-23), day (1-31), month (1-12), weekday (0-6, 0 = Sunday)

How It Works

  1. Enter a cron expression: Paste any 5-field or 6-field cron string like 0 9 * * 1-5.
  2. Read the plain-English explanation: The tool immediately shows a human-readable description of when the job runs.
  3. See next run times: A list of the next 5–10 scheduled execution times is shown based on the current date and time.
  4. Validate: Invalid expressions are highlighted with specific error messages explaining what went wrong.

Why Use Cron Explainer?

Cron syntax is compact but cryptic — 0 3 * * 0 means "every Sunday at 3 AM" but only after you've learned the field order (minute, hour, day, month, weekday). Reading unfamiliar cron expressions in infrastructure configs or CI/CD pipelines slows down debugging. This tool instantly translates any valid cron expression to a plain sentence, validates the expression, shows upcoming run times so you can verify the schedule is what you intended, and explains each field value individually. It supports standard 5-field syntax, non-standard 6-field (with seconds), and special strings like @daily and @hourly.

Field Reference

Related Tools