That's a great question!
As mentioned in the step, the time command provides insights into the resources consumed during command execution. Specifically, when you run time before another command, it measures:
usertime: The CPU time spent on user-mode processes.systemtime: The CPU time spent by the kernel on behalf of the process.cpupercentage: The percentage of CPU utilization.total(real/elapsed) time: The total elapsed time from when the command started to when it finished.
These metrics help you understand how much time a command actually takes to complete and how much of that time is spent by the CPU on different types of operations.
Let me know if you have any other questions about time or anything else in the lab!