Home Linux Tips & Tricks Find The Execution Time Of A Command Or Process In Linux

Find The Execution Time Of A Command Or Process In Linux

Check Command Or Process Execution Time In Linux

By sk
Published: Last Updated on 117K views

You probably know the start time of a command/process and how long a process is running in Linux and Unix-like systems. But, how do you know when did the command or process is ended? How would you what is the total time taken by the command/process to complete? Well, It's easy! On Unix-like systems, there is a utility named 'GNU time' that is specifically designed for this purpose. Using Time utility, we can easily measure the total execution time of a command or program in Linux operating systems. Good thing is 'time' command comes preinstalled in most Linux distributions, so you don't have to bother with installation.

Find The Execution Time Of A Command Or Process In Linux

To measure the execution time of a command/program, just run.

$ /usr/bin/time -p ls

Or,

$ time ls

Sample output:

dir1 dir2 file1 file2 mcelog

real 0m0.007s
user 0m0.001s
sys 0m0.004s
$ time ls -a
. .bash_logout dir1 file2 mcelog .sudo_as_admin_successful
.. .bashrc dir2 .gnupg .profile .wget-hsts
.bash_history .cache file1 .local .stack

real 0m0.008s
user 0m0.001s
sys 0m0.005s

The above commands displays the total execution time of 'ls' command. Replace "ls" with any command/process of your choice to find the total execution time.

Here,

  1. real -refers the total time taken by command/program,
  2. user - refers the time taken by the program in user mode,
  3. sys - refers the time taken by the program in kernel mode.

We can also limit the command to run only for a certain time as well. Refer the following guide for more details.

time vs /usr/bin/time

As you may noticed, we used two commands 'time' and '/usr/bin/time' in the above examples. So, you might be wondering what is the difference between them.

First, let us see what actually 'time' is using 'type' command. For those who don't know, the Type command is used to find out the information about a Linux command. For more details, refer this guide.

$ type -a time
time is a shell keyword
time is /usr/bin/time

As you see in the above output, time is both,

  • A keyword built into the BASH shell
  • An executable file i.e /usr/bin/time

Since shell keywords take precedence over executable files, when you just run time command without full path, you run a built-in shell command. But, When you run /usr/bin/time, you run a real GNU time program. So, in order to access the real command, you may need to specify its explicit path. Clear? Good!

The built-in 'time' shell keyword is available in most shells like BASH, ZSH, CSH, KSH, TCSH etc. The 'time' shell keyword has less options than the executables. The only option you can use in 'time' keyword is -p.

You know now how to find the total execution time of a given command/process using 'time' command. Want to know little bit more about 'GNU time' utility? Read on!

A Brief Description About 'GNU time' Program

The GNU time program runs a command/program with given arguments and summarizes the system resource usage as standard output after the command is completed. Unlike the 'time' keyword, the GNU time program not just displays the time used by the command/process, but also other resources like memory, I/O and IPC calls.

The typical syntax of the Time command is:

/usr/bin/time [options] command [arguments...]

The 'options' in the above syntax refers a set of flags that can be used with time command to perform a particular functionality. The list of available options are given below.

  • -f, --format - Use this option to specify the format of output as you wish.
  • -p, --portability - Use the portable output format.
  • -o file, --output=FILE - Writes the output to FILE instead of displaying as standard output.
  • -a, --append - Append the output to the FILE instead of overwriting it.
  • -v, --verbose - This option displays the detailed description of the output of the 'time' utility.
  • --quiet - This option prevents the time 'time' utility to report the status of the program.

When using 'GNU time' program without any options, you will see output something like below.

$ /usr/bin/time wc /etc/hosts
9 28 273 /etc/hosts
0.00user 0.00system 0:00.00elapsed 66%CPU (0avgtext+0avgdata 2024maxresident)k
0inputs+0outputs (0major+73minor)pagefaults 0swaps

If you run the same command with the shell built-in keyword 'time', the output would be bit different:

$ time wc /etc/hosts
9 28 273 /etc/hosts

real 0m0.006s
user 0m0.001s
sys 0m0.004s

Some times, you might want to write the system resource usage output to a file rather than displaying in the Terminal. To do so, use -o flag like below.

$ /usr/bin/time -o file.txt ls
dir1 dir2 file1 file2 file.txt mcelog

As you can see in the output, Time utility doesn't display the output. Because, we write the output to a file named file.txt. Let us have a look at this file:

$ cat file.txt 
0.00user 0.00system 0:00.00elapsed 66%CPU (0avgtext+0avgdata 2512maxresident)k
0inputs+0outputs (0major+106minor)pagefaults 0swaps

When you use -o flag, if there is no file named 'file.txt', it will create and write the output in it. If the file.txt is already present, it will overwrite its content.

You can also append output to the file instead of overwriting it using -a flag.

$ /usr/bin/time -a file.txt ls

The -f flag allows the users to control the format of the output as per his/her liking. Say for example, the following command displays output of 'ls' command and shows just the user, system, and total time.

$ /usr/bin/time -f "\t%E real,\t%U user,\t%S sys" ls
dir1 dir2 file1 file2 mcelog
0:00.00 real, 0.00 user, 0.00 sys

Please be mindful that the built-in shell command 'time' doesn't support all features of GNU time program.

For more details about GNU time utility, refer the man pages.

$ man time

To know more about Bash built-in 'Time' keyword, run:

$ help time

Resources:

You May Also Like

1 comment

Roberto Marquez November 3, 2019 - 10:56 pm

Thanks, SK. This is just what I was looking to find.

Reply

Leave a Comment

* By using this form you agree with the storage and handling of your data by this website.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. By using this site, we will assume that you're OK with it. Accept Read More