in reply to Re: Run a script multiple times and store the running time
in thread Run a script multiple times and store the running time
Just a minor correction here (I hope no offence is taken):
It seems that :
printf "With '%s' took: %.3f seconds\n", $arg, $time() - $start;
should instead be:
printf "With '%s' took: %.3f seconds\n", $arg, time() - $start;