RE: run cron job every 15 minutes

2001-05-01 Thread Ward William E DLDN
Message- From: John Horne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:11 AM To: [EMAIL PROTECTED] Subject: Re: run cron job every 15 minutes On 30-Apr-01 at 15:51:51 rpjday wrote: On Mon, 30 Apr 2001, Paul Anderson wrote: replace the 15 with 15 30 45 00. This will make the job run

Re: run cron job every 15 minutes

2001-05-01 Thread Chris Burkhart
PROTECTED] Sent: Tuesday, May 01, 2001 10:15 AM Subject: RE: run cron job every 15 minutes Actually, while the shorthand method of */15 works, the OLDER system is better... After all, who wants to see spikes every 15 minutes as all of the various cron jobs hit at 0, 15, 30 and 45 past? That's

Re: run cron job every 15 minutes

2001-05-01 Thread Anthony E . Greene
On Tue, 01 May 2001 08:11:02 John Horne wrote: On 30-Apr-01 at 15:51:51 rpjday wrote: in either case, you're better off using the */15 syntax i mentioned earlier. Why is that 'better'? I still use the old (?) syntax of '0,15,30,45' which seems to work just as well. Because */15 really means

run cron job every 15 minutes

2001-04-30 Thread Mark Lo
Hi, I would like to know what syntax to run corn job every 15 minutes ?? etc. 15 * * * * ??? Thank you mark ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: run cron job every 15 minutes

2001-04-30 Thread Paul Anderson
replace the 15 with 15 30 45 00. This will make the job run every 15 minutes. Mark Lo wrote: Hi, I would like to know what syntax to run corn job every 15 minutes ?? etc. 15 * * * * ??? Thank you mark ___ Redhat-list mailing

Re: run cron job every 15 minutes

2001-04-30 Thread Tym Rehm
0,15,30,45 * * * * Command - Original Message - From: Mark Lo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 30, 2001 11:52 AM Subject: run cron job every 15 minutes Hi, I would like to know what syntax to run corn job every 15 minutes ?? etc. 15

Re: run cron job every 15 minutes

2001-04-30 Thread Bernhard Rosenkraenzer
On Mon, 30 Apr 2001, Mark Lo wrote: I would like to know what syntax to run corn job every 15 minutes ?? etc. 15 * * * * ??? */15 * * * * /what/ever LLaP bero ___ Redhat-list mailing list [EMAIL PROTECTED]

Re: run cron job every 15 minutes

2001-04-30 Thread rpjday
On Mon, 30 Apr 2001, Mark Lo wrote: Hi, I would like to know what syntax to run corn job every 15 minutes ?? etc. 15 * * * * ??? */15 * * * * . rday -- Robert P. J. Day Eno River Technologies, Durham NC Unix, Linux and Open Source training This is Microsoft technical

Re: run cron job every 15 minutes

2001-04-30 Thread eric clover
*/15 * * * * ??? eric - Original Message - From: Mark Lo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 30, 2001 10:52 AM Subject: [RHL] run cron job every 15 minutes Hi, I would like to know what syntax to run corn job every 15 minutes ?? etc. 15

Re: run cron job every 15 minutes

2001-04-30 Thread rpjday
On Mon, 30 Apr 2001, Paul Anderson wrote: replace the 15 with 15 30 45 00. This will make the job run every 15 minutes. the above syntax won't work -- you need to separate multiple values for the same field with commas, not spaces. and there can't be any intervening spaces around the commas

Re: run cron job every 15 minutes

2001-04-30 Thread Ted Gervais
On Monday 30 April 2001 12:52 pm, you wrote: Hi, I would like to know what syntax to run corn job every 15 minutes ?? etc. 15 * * * * ??? Thank you mark Question - I can hardly read the 'type' on this message. What do I do to allow me to read this type of text??

Re: run cron job every 15 minutes

2001-04-30 Thread Giulio Orsero
On Mon, 30 Apr 2001 23:52:03 +0800, you wrote: I would like to know what syntax to run corn job every 15 minutes ?? etc. 15 * * * * ??? try */15 * * * * -- [EMAIL PROTECTED] ___ Redhat-list mailing list [EMAIL PROTECTED]

Re: run cron job every 15 minutes

2001-04-30 Thread Paul Anderson
I meant for each to be on their own line. Other than that you could use commas if you meant them to be on one line. Kinda old school I don't use metacharacters or commas, I use individual ines for each entry. Paul Anderson rpjday wrote: On Mon, 30 Apr 2001, Paul Anderson wrote: replace

Re: run cron job every 15 minutes

2001-04-30 Thread Mike Burger
*/15 * * * * job On Mon, 30 Apr 2001, Mark Lo wrote: Hi, I would like to know what syntax to run corn job every 15 minutes ?? etc. 15 * * * * ??? Thank you mark ___ Redhat-list mailing list [EMAIL PROTECTED]

Re: run cron job every 15 minutes

2001-04-30 Thread Mike Burger
If you're going to do that, the proper syntax is: 0,15,30,45 * * * * job On Mon, 30 Apr 2001, Paul Anderson wrote: replace the 15 with 15 30 45 00. This will make the job run every 15 minutes. Mark Lo wrote: Hi, I would like to know what syntax to run corn job every 15 minutes