Scheduling on every 2nd Saturday of a Month

Hi !

I need ur help on a UNIX scheduling Concept understanding :

If I need to schedule a job (Say ETL Datastage job) through a shell script using the Cron function to make it run on every second saturday of every month, How can I do it ?

:confused:

Hi

Try doing something like this: http://www.unix.com/shell-programming-scripting/15520-cron-schedule-1st-wednesday-every-month.html

Guru.

1 Like

Hi Guru !!

I am new to the function of cron so couldn't get whats shared over there :frowning: can u help me in understanding it ?

---------- Post updated at 12:44 AM ---------- Previous update was at 12:33 AM ----------

30 17 8-14,22-28 * * [ `date +\%u` -eq 6 ] && /rebootscript

This sounds good..found in one of our thread ! Have to try it ! :slight_smile: