...
Code Block |
---|
cron -w 4L -d L 10:00 # run on the last Thursday(4L) of the month *AND* Last of day of the month, this only occurs 3 times in a year in 2019 cron -w 0,1L -m 1 10:00 # run every Sunday(0) and last Monday(1L) of the month, in January at 10am |
...