I want to know how long a command takes to run. At the moment I am doing this:
echo | time | find "current" & dowahdiddy.exe & echo | time | find "current"
Which shows me the time before and after:
The current time is: 11:39:14.38
...dowahdiddy output...
The current time is: 11:39:15.44
I have to determine the difference. I could probably write a simple command line executor that shows me how long a shell operation takes, but I'm sure there are a bunch of ways to do this.