jasper@bernaers: ~/cron
← terminal
// crontab · linux · kubernetes · cloud scheduler

Cron expression explainer

Paste any cron expression — get an instant plain-English explanation and the next 10 run times.
Supports standard 5-field and extended 6-field (with seconds) syntax.

minute
hour
day (month)
month
day (week)
// next 10 scheduled runs (UTC)
Minute (0–59)
*every minute
0at minute 0 (top of hour)
*/15every 15 minutes
0,30at minute 0 and 30
5-10minutes 5 through 10
Hour (0–23)
*every hour
0midnight
12noon
9-17business hours
*/6every 6 hours
Day of Month (1–31)
*every day
1first of month
Llast day of month
1,151st and 15th
15Wnearest weekday to 15th
Month (1–12)
*every month
1January
6June
*/3every quarter
1,7Jan and Jul
Day of Week (0–7, Sun=0 or 7)
*every day
0Sunday
1-5Monday–Friday
6,0weekend
1Monday
Special strings
stringequivalent
@yearly0 0 1 1 *
@monthly0 0 1 * *
@weekly0 0 * * 0
@daily0 0 * * *
@hourly0 * * * *
@rebooton startup