how to wait 50 second ?

2001-06-01 Thread michiel
Hi, Is it possible to use a commando in Perl that will wait for example 50 seconds an then will continue ? Thanks in advance Michiel von der Crone Support Engineer Email : [EMAIL PROTECTED] OMNIS SOURCE

RE: how to wait 50 second ?

2001-06-01 Thread Hill, Ronald
Hi, Is it possible to use a commando in Perl that will wait for example 50 seconds an then will continue ? Thanks in advance [snipped] take a look at the sleep command sleep EXPR sleep Causes the script to sleep for EXPR seconds, or forever if no EXPR. May be interrupte

Re: how to wait 50 second ?

2001-06-01 Thread Kevin Meltzer
Hi Michiel, Look at sleep() perldoc -f sleep Cheers, Kevin On Fri, Jun 01, 2001 at 01:53:17PM +0200, [EMAIL PROTECTED] ([EMAIL PROTECTED]) spew-ed forth: > Hi, > > Is it possible to use a commando in Perl that will wait for example 50 > seconds an then will continue ? > > Thanks in advance

Re: how to wait 50 second ?

2001-06-01 Thread Walt Mankowski
On Fri, Jun 01, 2001 at 01:53:17PM +0200, [EMAIL PROTECTED] wrote: > Is it possible to use a commando in Perl that will wait for example 50 > seconds an then will continue ? Yes -- sleep(50) See perldoc -f sleep for more information. Walt

Re: how to wait 50 second ?

2001-06-01 Thread Brett W. McCoy
On Fri, 1 Jun 2001 [EMAIL PROTECTED] wrote: > Is it possible to use a commando in Perl that will wait for example 50 > seconds an then will continue ? sleep(50); See the perldoc on sleep for more details on it. -- Brett Brett W. McCoy Software Engineer Broadsoft, Inc. 240-364-5225 [EMAIL PROT

Re: how to wait 50 second ?

2001-06-01 Thread rob chanter
On Fri, Jun 01, 2001 at 01:53:17PM +0200, [EMAIL PROTECTED] wrote: > Hi, > > Is it possible to use a commando in Perl that will wait for example 50 > seconds an then will continue ? > sleep 50; That's assuming you meant "command"; a commando could probably do whatever the hell he wanted on my