On Jan 28, 2008 2:26 PM, Scott Ehrlich <<a href="mailto:scott@mit.edu">scott@mit.edu</a>> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Is it possible for me to schedule cron to say run script A on the first<br>Friday of the month, script B on the second Friday of the month, script C,<br>etc.?<br></blockquote></div><br>I think you can make cronjob run on every Friday, and in your script<br>
 check if date is 2nd (3rd) Friday.<br><br>OTOH, if you specify days and day of week, I think they will both match,<br> which is not what you want.<br><br>I found this with google: <br><<a href="http://www.computing.net/unix/wwwboard/forum/2731.html">http://www.computing.net/unix/wwwboard/forum/2731.html</a>><br>
<br>Which leads to something along these lines ...<br><p>day=`date +%d`</p><p>if [ $day -ge 8  -o $day -le 14 ]; then</p><p>      <a style="border-bottom: 1px solid rgb(153, 22, 22); color: rgb(153, 22, 22); text-decoration: underline; padding-bottom: 1px;" class="tfTextLink" href="javascript:void(0)">echo</a> '2nd Friday'</p>
<p>   # do F2</p><p>elif [ $day -ge 15  -o $day -le 21 ]; then <br></p><p>    <a style="border-bottom: 1px solid rgb(153, 22, 22); color: rgb(153, 22, 22); text-decoration: underline; padding-bottom: 1px;" class="tfTextLink" href="javascript:void(0)">echo</a> '3rd Friday'</p>

<p>   # do F3</p>
fi<br><br><br>HTH,<br>-Bob<br>