Crontab syntax guide
Standard crontab expressions consist of 5 fields separated by spaces: * * * * * (Minute, Hour, Day of Month, Month, Day of Week).
*matches any value.,separates a list of values (e.g.1,3,5).-specifies a range of values (e.g.1-5)./specifies steps (e.g.*/10means every 10 units).
Standard vs non-standard cron engines
System administrators encounter minor differences depending on the platform. Linux standard cron checks day-of-week AND day-of-month: if both are restricted, the job runs if either matches. Other engines (like Spring, Kubernetes, or serverless triggers) treat them as an AND logic or use 6 fields (adding seconds or years). This tool visualizes standard Linux system cron behavior.