Home > Archive > PERL Beginners > March 2004 > Pause/Hold in Perl
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Pause/Hold in Perl
|
|
| Anthony J Segelhorst 2004-03-30, 11:33 am |
| Is there a way in Perl to have a script wait 30 seconds before it
continues processing? Like or a pause or hold?
Anthony J Segelhorst
Enterprise Systems Management Team
Phone: 937-495-1876
Email: ajs15@meadwestvaco.com
________________________________________
________________________________
This email has been scanned for all viruses by the MessageLabs SkyScan
service. ________________________________________
_______________________
This electronic message contains information from MeadWestvaco
Corporation or subsidiary companies, which may be confidential,
privileged or otherwise protected from disclosure. The
information is intended to be used solely by the recipient(s)
named. If you are not an intended recipient, be aware that
any review, disclosure, copying, distribution or use of this
transmission or its contents is prohibited. If you have
received this transmission in error, please notify MeadWestvaco
immediately at postmaster@MeadWestvaco.com.
________________________________________
_______________________________
| |
| James Edward Gray II 2004-03-30, 11:33 am |
| On Mar 30, 2004, at 9:43 AM, Anthony J Segelhorst wrote:
> Is there a way in Perl to have a script wait 30 seconds before it
> continues processing? Like or a pause or hold?
Yes:
sleep 30;
James
|
|
|
|
|