The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 02-19-2009
hard aix hard aix is offline
Registered User
  
 

Join Date: Feb 2009
Location: Martinez, Taxifornia
Posts: 25
Quote:
Originally Posted by LPT View Post
Is there a way in AIX to schedule a script to run bi-weekly through cron?
Try this:
Code:
00 08 * * 3  [[ $(expr `date +%W` % 2) = 0 ]] && /home/user/user.script
depending on the bi-weekly cycle you may need a "= 1" instead.