FAK LAB Cron Parser

Cron Expression Parser

Parse and understand cron expressions

Parsed Expression
Description:

Next 5 Executions:
Cron Format
* * * * *
│ │ │ │ │
│ │ │ │ └─ Day of Week (0-6, Sunday=0)
│ │ │ └─── Month (1-12)
│ │ └───── Day of Month (1-31)
│ └─────── Hour (0-23)
└───────── Minute (0-59)

Examples:
0 0 * * * - Daily at midnight
0 */6 * * * - Every 6 hours
0 9 * * 1 - Every Monday at 9 AM
*/15 * * * * - Every 15 minutes