in reply to How can one best measure compile time of their Perl script?
The problem with the Unix time command is that it is not very reliable for very short processes:
$ time perl -c -e'use posix; 1;' -e syntax OK real 0m0.211s user 0m0.015s sys 0m0.077s ~ $ time perl -c -e'use posix; 1;' -e syntax OK real 0m0.093s user 0m0.015s sys 0m0.077s
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How can one best measure compile time of their Perl script?
by taint (Chaplain) on Nov 30, 2013 at 20:03 UTC | |
by Laurent_R (Canon) on Nov 30, 2013 at 21:50 UTC |