Cron Expression Parser

Parse and understand cron expressions

Cron Expression

0 chars

Parsed Result

Understanding Cron Expressions

Cron expressions are used to schedule tasks in Unix-like systems. They consist of 5 fields representing minute, hour, day, month, and day of week.

Our parser breaks down cron expressions into readable components to help you understand when tasks will execute.

Cron Format

Field Order

minute (0-59) hour (0-23) day (1-31) month (1-12) weekday (0-7)

Special Characters

* (any), ? (any), - (range), , (list), / (step)

Examples

0 9 * * 1 (9 AM every Monday), 30 2 * * * (2:30 AM daily)