You'll probably get better results as well as more maintainable code if you use perl code (either times or POSIX::times) for getting the system/user times.
$command="ls -lR";
@before{real,user,system,chuser,chsystem}=(time(),times());
system $command;
@after{real,user,system,chuser,chsystem}=(time(),times());
print "real @{[ $after{real}-$before{real} ]}\n";
print "user @{[ $after{chuser}-$before{chuser} ]}\n";
print "sys @{[ $after{chsystem}-$before{chsystem} ]}\n";
or the POSIX version:
use POSIX qw(times sysconf);
$clocks_per_second=POSIX::sysconf( &POSIX::_SC_CLK_TCK );
$command="ls -lR";
@before{real,user,system,chuser,chsystem}=(POSIX::times());
system $command;
@after{real,user,system,chuser,chsystem}=(POSIX::times());
printf "real %2.2f\n", ($after{real}-$before{real})/$clocks_per_second;
printf "user %2.2f\n", ($after{chuser}-$before{chuser})/$clocks_per_second;
printf "sys %2.2f\n", ($after{chsystem}-$before{chsystem})/$clocks_per_second;
opento do anything? Because it is not. Also, at the end of the script, you need neitherclosenorexit, as those things are done automatically when the script ends. – TLP Jul 18 '11 at 17:44exitin your script. – Rahul Jul 18 '11 at 17:49