Cron Expression Parser
Cron Expressions Parsing Tool
Parse cron expressions and see a human-readable explanation with next run times.
Cron Syntax
| Field | Values | Special |
|---|---|---|
| Minute | 0-59 | * , - / |
| Hour | 0-23 | * , - / |
| Day of Month | 1-31 | * , - / |
| Month | 1-12 | * , - / |
| Day of Week | 0-7 (0,7=Sun) | * , - / |
About Cron
Cron is a time-based job scheduler in Unix-like operating systems.
It allows users to schedule commands or scripts to run automatically at a specified time or interval.
Learn more: Bash Cron