Re: cron job every 5 hours

2007-07-18 Thread RW
On Tue, 17 Jul 2007 21:53:22 -0700 Garrett Cooper [EMAIL PROTECTED] wrote: Shell scripts with sleep won't give you exactly the 5 hours you desire, but should come close (within 1-5 seconds of actual time depending on your host PC's precision, and whether or not your RTC battery is dead

Re: cron job every 5 hours

2007-07-17 Thread Olivier Nicole
Something like: minute */5 * * * root path/to/scriptname will do the trick. Substitute the * in */5 for your desired start time (* being 0). -Garrett PS crond won't do 5 hours and every x number of minutes per job (5 hours + x mins from end to start), just a flat

Re: cron job every 5 hours

2007-07-17 Thread Fredrik Tolf
Olivier Nicole [EMAIL PROTECTED] writes: Something like: minute */5 * * * root path/to/scriptname will do the trick. Substitute the * in */5 for your desired start time (* being 0). -Garrett PS crond won't do 5 hours and every x number of minutes per job (5 hours

Re: cron job every 5 hours

2007-07-17 Thread Garrett Cooper
Fredrik Tolf wrote: Olivier Nicole [EMAIL PROTECTED] writes: Something like: minute */5 * * * root path/to/scriptname will do the trick. Substitute the * in */5 for your desired start time (* being 0). -Garrett PS crond won't do 5 hours and every x number of minutes per

Re: cron job every 5 hours

2007-07-17 Thread Garrett Cooper
Garrett Cooper wrote: Fredrik Tolf wrote: Olivier Nicole [EMAIL PROTECTED] writes: Something like: minute */5 * * * root path/to/scriptname will do the trick. Substitute the * in */5 for your desired start time (* being 0). -Garrett PS crond won't do 5 hours and every x

Re: cron job every 5 hours

2007-07-15 Thread Olivier Nicole
I want to run an updater script, every 5 hours and x minutes. I thought to use: minute 5 * * * root path/to/scriptname but that looks like it only works once a day, i want it to go every 5 hours not justa at 5 in the monrning. You could sechedule you jor at 5, 10, 15 and 20 on

Re: cron job every 5 hours

2007-07-15 Thread Garrett Cooper
Olivier Nicole wrote: I want to run an updater script, every 5 hours and x minutes. I thought to use: minute 5 * * * root path/to/scriptname but that looks like it only works once a day, i want it to go every 5 hours not justa at 5 in the monrning. You could sechedule you jor at

cron job every 5 hours

2007-07-13 Thread Dave
Hello, I want to run an updater script, every 5 hours and x minutes. I thought to use: minute 5 * * * root path/to/scriptname but that looks like it only works once a day, i want it to go every 5 hours not justa at 5 in the monrning. Thanks. Dave.

Re: cron job every 5 hours

2007-07-13 Thread Duane Hill
On Fri, 13 Jul 2007 at 12:50 -0400, [EMAIL PROTECTED] confabulated: Hello, I want to run an updater script, every 5 hours and x minutes. I thought to use: minute 5 * * * root path/to/scriptname crontab(5): ... Steps are also permitted after an asterisk, so if you want to say

Re: cron job every 5 hours

2007-07-13 Thread Josh Paetzel
On Friday 13 July 2007, Duane Hill wrote: On Fri, 13 Jul 2007 at 12:50 -0400, [EMAIL PROTECTED] confabulated: Hello, I want to run an updater script, every 5 hours and x minutes. I thought to use: minute 5 * * * root path/to/scriptname crontab(5): ... Steps are also