crontab on Linux schedule question
To schedule stop Oracle services to run first Tuesdays of every month we put following line on crontab on Linux:
0 8 1-7 * 2 cd /etc/init.d/ && ./oracle stop
but instead of 1st Tuesday, it did run on 4th Tuesday - earlier (regardless of 1-7 we put for the day of the month) …
What is wrong?