Analizador de Cron

Analiza expresiones cron y ve las próximas 10 ejecuciones. Crontab estándar de 5 campos.

Introduce un valor arriba para ver el resultado.

What is this for?

Cron expressions are powerful and easy to mis-write. 0 0 * * 1-5 looks like a weekday-at-midnight schedule and is. */15 0-9 * * * looks like every fifteen minutes during business hours and is. 0 0 1 */3 * looks like quarterly... if you remembered */3 means "every third month". This tool lets you paste an expression, see what it actually means in plain English, and preview the next 10 fire times so you can confirm before deploying.

When to use it

Cron field reference

FieldRangeWildcards
Minute0-59* · */5 · 0,30 · 0-29
Hour0-23same
Day of month1-31same
Month1-12same
Day of week0-6 (0 = Sunday, 7 also = Sunday)same

Common gotchas