Track the time a command takes in UNIX/LINUX?

command-line, linux, terminal, unix

Solution

Yes, use `time <command>`, such as

time ls

Consult `man time` for more options. Link.

Problem

In UNIX/LINUX, is there an easy way to track the time a command takes?

Original source

Related problems