Hi,
I need to get the elapsed time in milliseconds after running some commands.
I tried that but I get seconds:
Have you any suggestion?
thanks
=============
#!/usr/bin/perl
use Time::Local;
$start = time;
commands;
$elapsed = time - $start;
print "Time elapsed: $elapsed\n";
I need to get the elapsed time in milliseconds after running some commands.
I tried that but I get seconds:
Have you any suggestion?
thanks
=============
#!/usr/bin/perl
use Time::Local;
$start = time;
commands;
$elapsed = time - $start;
print "Time elapsed: $elapsed\n";