# Run on every second Tuesday of the month

20 4 8-14 * * test $(date +%u) -eq 2 && /usr/bin/bash /home/user/mytuesdayscript.sh

Explanation:

Run at 04:20 on every day-of-month from 8 through 14.

But we are testing if day is number 2 (Tuesday. Sunday is 0) and we only run the script in this day.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.