Step values
Use patterns like */15 for every 15 minutes or 0 */2 * * * for every two hours.
Developer utility
Parse five-field cron schedules, explain them in plain language, and preview upcoming runs directly in your browser.
Format:
or shortcuts like @daily.
Examples
Interpretation
Cron basics
The parser accepts minute, hour, day of month, month, and weekday fields. It also supports common shortcuts such as @daily, @weekly, and @hourly.
Use patterns like */15 for every 15 minutes or 0 */2 * * * for every two hours.
Use readable names such as MON-FRI for weekdays or JAN-MAR for the first quarter.
Use comma-separated lists like 1,15 or 1,3,5 when a job runs on selected days.
FAQ
Classic five-field cron syntax: minute, hour, day of month, month, and weekday.
No. Validation, explanation, and next-run preview are handled client-side.
No. This tool intentionally focuses on portable five-field crontab expressions.