Determine the Execution Time of a Shell Command
Ever wondered how long your shell command took to execute? Here's a simple trick to find out.
time your-command
This command will execute 'your-command' and then display information about resources used by it, including the time it took to execute. It's a great way to optimize your scripts.