RE: perl pause or wait

2004-05-14 Thread JJB
that. Then on the other hand, I would accept an working routine to add to my script to do that. -Original Message- From: Christopher Nehren [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 11:22 PM To: JJB Cc: FreeBSD Questions List Subject: Re: perl pause or wait JJB wrote: I have perl

perl pause or wait

2004-05-13 Thread JJB
for processing. Is there in perl pause or wait command I can use to allow some time to elapse before continuing with the launch of the next script? Thanks ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: perl pause or wait

2004-05-13 Thread Dan Harris
for processing. Is there in perl pause or wait command I can use to allow some time to elapse before continuing with the launch of the next script? Yes, use the sleep() function. perldoc -f sleep for more information. -Dan ___ [EMAIL PROTECTED

Re: perl pause or wait

2004-05-13 Thread Christopher Nehren
for processing. Is there in perl pause or wait command I can use to allow some time to elapse before continuing with the launch of the next script? Using a statement that delays for a specified period of time is a generally bad idea because you can't guarantee that the operation will complete