How to schedule a shell script to run on a specific day of the month

I want to schedule a shell script to run on Thursday that starts after the second Tuesday of every month. How do I schedule this in a crontab?

+3


source to share


1 answer


The second Tuesday of the month will be between 8th and 14th inclusive, so set the "day of the week" field to 4 (Thursday) and the "day-month" field to 10-16 (that is, a range configured two days after the range second month of Tuesday).



+3


source







All Articles