in reply to Re: Is it possible to issue a perl command to sleep for less than 1 second?
in thread Is it possible to issue a perl command to sleep for less than 1 second?

Yes, that is a simple method. See select, where it states:

You can effect a sleep of 250 milliseconds this way:

select(undef, undef, undef, 0.25);

Dave

  • Comment on Re^2: Is it possible to issue a perl command to sleep for less than 1 second?
  • Download Code