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

You can use Time::HiRes for that (as stated above).
use Time::HiRes qw (sleep); sleep (0.15); # Replaces sleep() with a high-precision alternative Time::HiRes::sleep (0.2); # if you don't want your standard sleep() ov +erwritten
  • Comment on Re: Is it possible to issue a perl command to sleep for less than 1 second?
  • Download Code