~ / labs/cron

cron.

paste any 5-field cron expression to see it translated into english and get a preview of the next 10 fire times in your local timezone. no server round-trip — everything runs in-browser.

1minute
2hour
3day
4month
5weekday
try
// english
every 5 minutes
// next firesbrowser tz · UTC
  1. #12026-06-15 15:15:00zin 3m
  2. #22026-06-15 15:20:00zin 8m
  3. #32026-06-15 15:25:00zin 13m
  4. #42026-06-15 15:30:00zin 18m
  5. #52026-06-15 15:35:00zin 23m
  6. #62026-06-15 15:40:00zin 28m
  7. #72026-06-15 15:45:00zin 33m
  8. #82026-06-15 15:50:00zin 38m
  9. #92026-06-15 15:55:00zin 43m
  10. #102026-06-15 16:00:00zin 48m
// syntax cheatsheet
┌─────── minute        (0–59)
│ ┌───── hour          (0–23)
│ │ ┌─── day of month  (1–31)
│ │ │ ┌─ month         (1–12)  jan feb … dec
│ │ │ │ ┌ day of week  (0–6)   sun mon … sat
│ │ │ │ │
* * * * *

operators:
  *          any value
  5          exact value
  1,3,5      list
  1-5        range
  */15       step (every 15)
  @hourly    shortcut — also @daily @weekly @monthly @yearly