time

Name

time -- run programs and summarize system resource usage

Description

The specification for "time" is as specified in the SUS but with the following differences as listed below.

Differences

-o FILE, --output=FILE

Write the resource use statistics to FILE instead of to the standard error stream. By default, this overwrites the file, destroying the file's previous contents.

-a, --append

Append the resource use information to the output file instead of overwriting it.

-f FORMAT, --=FORMAT

Use FORMAT as the string that controls the output of time. See the below more information.

--portability

Equivalent to the -p option

-v, --verbose

Use the built-in verbose , which displays each available piece of information on the program's resource use on its own line, with an English description of its meaning.

-V, --version

Print the version number of time and exit.

Formatting the Output

The string FORMAT controls the contents of the time output. The string can be set using the -f or --format, -v or --verbose, or -p or --portabili­ ty options. If they are not given, but the TIME environ­ ment variable is set, its value is used as the string. Otherwise, a built-in default is used.

The default is:

%Uuser %Ssystem %Eelapsed %PCPU (%Xtext+%Ddata %Mmax)k
%Iinputs+%Ooutputs (%Fmajor+%Rminor)pagefaults %Wswaps

The string usually consists of resource specifiers interspersed with plain text. A percent sign (%) in the string causes the following character to be interpreted as a resource specifier, which is similar to the formatting characters in the printf(3) function.

A backslash (\) introduces a backslash escape, which is translated into a single printing character upon output. \t outputs a tab character, \n outputs a newline, and \\ outputs a backslash. A backslash followed by any other character outputs a question mark (?) followed by a backslash, to indicate that an invalid backslash escape was given.

Other text in the string is copied verbatim to the output. time always prints a newline after printing the resource use information, so normally strings do not end with a newline character (or 0).

There are many resource specifications. Not all resources are measured by all versions of Unix, so some of the values might be reported as zero. Any character following a percent sign that is not listed in the table below causes a question mark (`?') to be output, followed by that character, to indicate that an invalid resource listed in the table below causes a question mark (`?') to be output, followed by that character, to indicate that an invalid resource specifier was given.

The resource specifiers, which are a superset of those recognized by the tcsh(1) builtin `time' command, are:

%

A literal `%'.

C

Name and command line arguments of the command being timed.

D

Average size of the processs unshared data area, in Kilobytes.

E

Elapsed real (wall clock) time used by the process, in [hours:]minutes:seconds.

F

Number of major, or I/O-requiring, page faults that occurred while the process was running. These are faults where the page has actually migrated out of primary memory.

I

Number of file system inputs by the process.

K

Average total (data+stack+text) memory use of the process, in Kilobytes.

M

Maximum resident set size of the process during its lifetime, in Kilobytes.

O

Number of file system outputs by the process.

P

Percentage of the CPU that this job got. This is just user + system times divided by the total running time.

R

Number of minor, or recoverable, page faults. These are pages that are not valid (so they fault) but which have not yet been claimed by other virtual pages. Thus the data in the page is still valid but the system tables must be updated.

S

Total number of CPU-seconds used by the system on behalf of the process (in kernel mode), in seconds.

U

Total number of CPU-seconds that the process used directly (in user mode), in seconds.

W

Number of times the process was swapped out of main memory.

X

Average amount of shared text in the process, in Kilobytes.

Z

System's page size, in bytes. This is a per-system constant, but varies between systems.

c

Number of times the process was context-switched involuntarily (because the time slice expired).

e

Elapsed real (wall clock) time used by the process, in seconds.

k

Number of signals delivered to the process.

p

Average unshared stack size of the process, in Kilobytes.

r

Number of socket messages received by the process.

s

Number of socket messages sent by the process.

t

Average resident set size of the process, in Kilobytes.

w

Number of times that the program was context-switched voluntarily, for instance while waiting for an I/O operation to complete.

x

Exit status of the command.