Perhaps write a perl script that is inifinitely looping and sleeps 10 secs
then runs your other script.

while (1){
sleep 10;
system("myotherscript.pl");
}


> -----Original Message-----
> From: Lance Prais [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, May 29, 2002 10:51 AM
> To: Perl
> Subject: scheduler question
> 
> 
> I have written a Perl script that needs to be executed every 
> 10 seconds.
> How would I go about doing this.  I am working with Perl on 
> NT and using
> scheduler and the lowest I can set it to is 1 minute.
> 
> Thank you in advance
> 
> Lance
> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

----------------------------------------------------------------------------
--------------------
The views and opinions expressed in this email message are the sender's
own, and do not necessarily represent the views and opinions of Summit
Systems Inc.


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to