Reading the five fields
Each field accepts more than a single number. A comma separates a list, a hyphen gives a range, and a slash sets a step within whatever came before it.
- Steps apply to a range — */15 in the minute field means 0, 15, 30, 45. It is a step through the whole range, not "every 15 minutes from now".
- Names are allowed — The month and day-of-week fields accept three-letter names, so MON-FRI and JAN are valid and considerably more readable.
- Sunday is both 0 and 7 — Every common implementation accepts either, which exists to accommodate the two conventions for numbering weeks.
* every value
5 exactly 5
1,15 1 and 15
9-17 9 through 17
*/15 every 15th value, starting at the minimum
9-17/2 every 2nd value from 9 to 17