Is there a built-in way to measure execution time of a command on the Windows command line?
Not quite as elegant as some of the functionality on Unix, but create a cmd file which looks like:
@echo off
time < nul
yourexecutable.exe > c:\temp\output.txt
time < nul
rem on newer windows system you can try time /T
That will display the start and stop times like so:
The current time is: 10:31:57.92
Enter the new time:
The current time is: 10:32:05.94
Enter the new time: