Paste a cron expression (5 or 6 fields). See the next 10 fire times in your local timezone, a plain-English description, and a field-by-field breakdown.
| Field | Range | Value |
|---|
Standard 5-field cron is minute hour day-of-month month day-of-week.
Optional 6th field is second (Quartz-style).
| Syntax | Meaning |
|---|---|
| * | any value |
| 5 | literal value |
| 5,10,15 | list |
| 5-10 | range |
| */5 | every 5 (step) |
| 5-30/5 | range with step |
| MON,TUE,WED | day-of-week names (also JAN-DEC for months) |
| @yearly @monthly @weekly @daily @hourly | shortcuts |