~ / 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-07-30 18:50:00zin 1m
  2. #22026-07-30 18:55:00zin 6m
  3. #32026-07-30 19:00:00zin 11m
  4. #42026-07-30 19:05:00zin 16m
  5. #52026-07-30 19:10:00zin 21m
  6. #62026-07-30 19:15:00zin 26m
  7. #72026-07-30 19:20:00zin 31m
  8. #82026-07-30 19:25:00zin 36m
  9. #92026-07-30 19:30:00zin 41m
  10. #102026-07-30 19:35:00zin 46m
// 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