Cron Expression Parser
Translate complex cron strings into readable human language.
Cron String
Input your 5-part cron expression
Quick Format Reference:
* * * * *
│ │ │ │ │
│ │ │ │ └── day of week (0-6)
│ │ │ └──── month (1-12)
│ │ └────── day of month (1-31)
│ └──────── hour (0-23)
└────────── minute (0-59)
Natural Language Explanation
"Every 5 minute, every hour, every day of month, every month, and every day of week."
* Basic description for standard Posix cron format.