Ever wondered how long time a command takes to run? I did. A colleague showed me the time command. I’m here going to try to show how you can use it.
time ls
This will output something like this (plus the ls commands output):
real 0m0.369s user 0m0.002s sys 0m0.007s
Where the ‘real’ value is the one to look for. Pretty easy 🙂
0 Comments.