Parse any cron expression, get a plain-English description, and preview the next 10 execution times — all in your browser.
Standard cron uses five space-separated fields:
minute hour dom month dow
Each field accepts values, ranges (1-5), steps (*/2), lists (1,3,5), or * for any.
*/5 means "every 5 units". 1-5 means "from 1 to 5 inclusive". 1-5/2 means "1, 3, 5". 0,30 means "at 0 and 30".
0 and 7 both represent Sunday. 1=Monday through 6=Saturday. Named values like MON, FRI are also accepted.
Months can use numbers (1–12) or three-letter names: JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC.