Time is utility program that can be used to track execution time of some executable. Inspired by unix's time
.
% time [-h] executable [-- [...executable args]]
When -h
is specified, execution time will be displayed in user-friendly form (like 1.2s
or 24.1m
).
If -n
is specified, time
will open new console windows and start exeutable in it.
In time
's window will be displayed current exection time.
All arguments after --
will be passed as executable command line arguments.