Index: [Article Count Order] [Thread]

Date:  Mon, 09 Oct 2006 16:26:23 +0100
From:  Dogsbody <dan (at mark) dogsbody.org>
Subject:  [coba-e:07497] Re: RUNNING CRON JOBS
To:  coba-e (at mark) bluequartz.org
Message-Id:  <452A6A1F.10101 (at mark) dogsbody.org>
In-Reply-To:  <6.2.5.6.0.20061007195445.03a62f18 (at mark) pdcweb.net>
References:  <039801c6e9d0$80515100$6501a8c0 (at mark) mjrtab> <200610070825.07264.bq (at mark) solarspeed.net> <005001c6ea1c$635ab270$2a101750$ (at mark) com> <008201c6ea6d$6d4f5b90$47ee12b0$ (at mark) com> <6.2.5.6.0.20061007195445.03a62f18 (at mark) pdcweb.net>
X-Mail-Count: 07497


>> 5 0 * * * /etc/fix_majordomo.pl [-hmtvV]
>> including above job to be running every 5 minutes, I hope it is 
>> correct....
>
> Should be: 5 * * * *
> The way you have it, it will only run at 00:05 (AM)

The first one will run it at 5 past midnight every day.

The second will run it at 5 past every hour every day.

To run it every 5 mins every hour of every day you need one of these...

*/5 * * * * command

2,7,12,17,22,27,32,37,42,47,52,57 * * * * command

Regards, Dan