Hi - > -----Original Message----- > From: andres finlandes [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 20, 2003 10:39 PM > To: [EMAIL PROTECTED] > Subject: miliseconds > > Hello. > > Does anybody know how to manage miliseconds in Perl?. > > Thanks in advance. > Miguel. >
Try Time::HIRes on CPAN. Or you can hack the 'select' command for hi-resolution (finer than sleep's full second resolution): select undef, undef, undef, .01; will wait 10 ms (.01 seconds). Aloha => Beau; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]