![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| cron job question | dannyd | Linux | 5 | 03-03-2008 11:40 AM |
| cron question | moe2266 | Shell Programming and Scripting | 4 | 11-19-2007 02:08 AM |
| cron question | moe2266 | Shell Programming and Scripting | 4 | 08-20-2007 04:09 PM |
| question about cron | hcclnoodles | UNIX for Dummies Questions & Answers | 1 | 12-08-2006 09:02 AM |
| cron question | ted | Shell Programming and Scripting | 2 | 08-02-2004 05:13 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
|||||
|
Not sure that is possible. It would be simpler to schedule the job for every saturday and have the script figure out whether it is the last saturday and whether to run or not. There are canned examples on the net such as:
for i in `cal | awk '{print $6}'`; do if [ "x" != "x"$i ]; then day=$i fi done today=`date | awk '{print $3}'` if [ $day = $today ]; then 'do want you want ...' fi exit There are much more robust scheduling tools out there that can manage scheduled jobs from one point accross your enterprise. It is also discussed in these forums here. Cheers, Keith |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|