Cronjob Help [message #201745] |
Mon, 06 November 2006 10:08 |
toshidas2000
Messages: 120 Registered: November 2005
|
Senior Member |
|
|
All
I want to schedule a cronjob which runs first saturday of ever month. How do I do that, Please help.
Thanks
Toshi
|
|
|
|
|
Re: Cronjob Help [message #203464 is a reply to message #201762] |
Wed, 15 November 2006 03:58 |
prabhakarkamath
Messages: 15 Registered: February 2006
|
Junior Member |
|
|
This must be more clear what crontab entry should look like...
crontab entry
* * * * * command to be executed
- - - - -
| | | | |
| | | | +----- day of week (1 - 7) (monday = 1)
| | | +------- month (1 - 12)
| | +--------- day of month (1 - 31)
| +----------- hour (0 - 23)
+------------- min (0 - 59)
So, your crontab entry look like the following..
0 0 1,2,3,4,5,6,7 * 6 command_to_execute
Cheers!!
|
|
|