You can measure execution time of a command in Windows command line out-of-the-box, just run
If you have PowerShell installed, get much more information with
On Linux simply use
taken from: http://stackoverflow.com/questions/673523/how-to-measure-execution-time-of-command-in-windows-command-line
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:
Post a Comment