Jan 1, 0001

Cron

https://crontab.guru/

CharacterMeaning
*Any value
,A list of values (comma-separated)
-Range of values (dash-separated)
/Step value (every nth iteration)
\Exclude a value (slash)
{n}Repeat on specific days of the month for every mth
*Any day of the week
?Any day of the week
@yearly, @monthly, etc.Cron expression modifier (e.g., “@yearly” = run once a year at midnight on January 1st)
#Comment symbol (does not affect execution)
PositionDescription
5 minsMinutes (0-59)
HourHours (0-23)
Day of MonthDays of the month (1-31)
MonthMonths (1-12 or JAN-DEC)
Day of WeekDays of the week (0-6, where 0 and 7 are both Sunday)
YearYears (0-99999)

Example: 0 45 12 * 1-3 * will run at 45 minutes after midnight on January, February and March every day.