Friday, February 10, 2012

You can measure execution time of a command in Windows command line out-of-the-box, just run
cmd /v:on /c "echo !TIME! & mycommand & echo !TIME!"

If you have PowerShell installed, get much more information with
Measure-Command mycommand

On Linux simply use
time mycommand

taken from: http://stackoverflow.com/questions/673523/how-to-measure-execution-time-of-command-in-windows-command-line

No comments: