The only way i know to do this is to set up your cron for every Saturday. The cron then calls a script which checks if it is the second saturday of the month.
How does the script work ? Well, the second saturday must lie between the 8th and the 14th
So you script needs to say something like :-
day=`date +%d`
If $day >7 and <15 then .... execute your next script
else do nothing.
Post back if you need further help with the script
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.