Detailed explanation of the use of Linux time command

Detailed explanation of the use of Linux time command

1. Command Introduction

time is used to count the time consumed by command execution and related system resources and other information. There are four major resources that time can display, namely:

Time resources
Memory resources
IO resources
Command info

2. Command format

time [options] command [arguments...]

3. Option Description

-f FORMAT, --format=FORMAT: Output using the specified format. If the output format is not specified, the format specified by the environment variable TIME is used. -p, --portability: Use a compatible output format, real %e user %U sys %S. The purpose of this is to be compatible with the POSIX specification. -o FILE, --output=FILE: Set the result output file. This option will write the output of time to the specified file. If the file already exists, overwrite its contents -a, --append: Used with the -o option, use append mode to write the output to the specified file -v, --verbose: Use verbose mode to output statistics as much as possible --help: Display help information -V, --version: Display version information -- : Terminate the option list

The output format is interpreted in a similar way to printf. Ordinary characters are output directly. Tabs, newlines, backslashes, and percent signs are represented by \t, \n, \, and %% respectively. % followed by other letters indicates a special format. The available formats are as follows:

Time
%E: The time it takes to execute the command, in the format [hours:]minutes:seconds
%e: The time it takes to execute the instruction, in seconds %S: The time it takes in kernel mode when the instruction is executed, in seconds %U: The time it takes in user mode when the instruction is executed, in seconds %P: The percentage of CPU usage when executing the instruction. In fact, this number is the CPU time in kernel mode plus user mode divided by the total time ((%S+%U)/%E)

Memory
%M: The maximum amount of memory used during execution. Unit: KB
%t: The average memory usage during execution, in KB
%K: The average size of the total memory (stack+data+text) used by the executed program, in KB
%D: The average size of the unshared data area of ​​the executing program, in KB
%p: The average size of the unshared stack of the executing program, in KB
%X: The average value of the shared text segment of the executing program, in KB
%Z: The size of the system memory page, in bytes. This is a constant for the same system %F: Number of memory page faults. Memory page faults refer to the need to read data from disk into memory %R: The number of minor or recoverable page faults. These are faults for invalid pages, but that memory page is not yet in use by other virtual pages. Therefore, the data in the page is still valid, but the system table must be updated %W: The number of times the process has been swapped out of memory %c: The number of times the process context has been switched (because the time slice has expired)
%w: The number of times the process waits, which refers to the number of times the program actively switches contexts, such as waiting for an I/O operation to complete.
%I: The number of files input by this program %O: The number of files output by this program %r: The number of Socket Messages received by this program
%s: Socket Message sent by this program
%k: The number of signals received by this program Command Info
%C: Parameters and command name during execution %x: Exit Status of the command

4. Common Examples

(1) Statistics on the execution time of the specified command.

time date 
Fri May 31 11:30:04 CST 2019

real 0m0.001s
user 0m0.000s
sys 0m0.000s

The above is the detailed content of the use of Linux time command. For more information about Linux time command, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed Tutorial on Using xargs Command on Linux
  • Use of Linux tr command
  • Use of Linux ipcs command
  • Linux sar command usage and code example analysis
  • Use of Linux ls command
  • Use of Linux sed command
  • Use of Linux read command
  • Use of Linux usermod command
  • Use of Linux passwd command
  • Use of Linux ln command
  • Use of Linux telnet command

<<:  Some "pitfalls" of MySQL database upgrade

>>:  How to implement draggable components in Vue

Recommend

How to install the latest version of docker using deepin apt command

Step 1: Add Ubuntu source Switch to root su root ...

An example of how JavaScript can prevent duplicate network requests

Preface During development, we often encounter va...

Detailed explanation of docker command to backup linux system

tar backup system sudo tar cvpzf backup.tgz --exc...

Exploring the Linux Kernel: The Secrets of Kconfig

Get a deep understanding of how the Linux configu...

Detailed usage of React.Children

Table of contents 1. React.Children.map 2. React....

Conditional comment style writing method and sample code

As front-end engineers, IE must be familiar to us...

Detailed explanation of the wonderful CSS attribute MASK

This article will introduce a very interesting at...

Use Docker to run multiple PHP versions on the server

PHP7 has been out for quite some time, and it is ...

A Deep Dive into the MySQL InnoDB Storage Engine

Preface In MySQL, InnoDB belongs to the storage e...

Linux command line operation Baidu cloud upload and download files

Table of contents 0. Background 1. Installation 2...

MySQL server 5.7.20 installation and configuration method graphic tutorial

This article records the installation and configu...

How to improve Idea startup speed and solve Tomcat log garbled characters

Table of contents Preface Idea startup speed Tomc...

How to create a project with WeChat Mini Program using typescript

Create a project Create a project in WeChat Devel...

About the usage and precautions of promise in javascript (recommended)

1. Promise description Promise is a standard buil...