NetBSD/usr.bin/time/time.1

168 lines
3.9 KiB
Groff
Raw Normal View History

2011-10-02 05:47:27 +04:00
.\" $NetBSD: time.1,v 1.22 2011/10/02 01:47:27 dholland Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)time.1 8.1 (Berkeley) 6/6/93
1993-03-21 12:45:37 +03:00
.\"
2011-10-02 05:47:27 +04:00
.Dd October 1, 2011
1993-03-21 12:45:37 +03:00
.Dt TIME 1
.Os
1993-03-21 12:45:37 +03:00
.Sh NAME
.Nm time
.Nd time command execution
.Sh SYNOPSIS
.Nm
2009-01-24 18:00:55 +03:00
.Op Fl clp
2011-10-02 05:47:27 +04:00
.Ar command
.Op Ar argument ...
1993-03-21 12:45:37 +03:00
.Sh DESCRIPTION
The
.Nm
1993-03-21 12:45:37 +03:00
utility
executes and
times
2011-10-02 05:47:27 +04:00
.Ar command .
After the command finishes,
.Nm
writes the total time elapsed,
the time consumed by system overhead,
2001-12-01 19:43:07 +03:00
and the time used to execute
2011-10-02 05:47:27 +04:00
the command
to the standard error stream.
Times are reported in seconds.
1993-03-21 12:45:37 +03:00
.Pp
Available options:
.Bl -tag -width Ds
2009-01-24 18:00:55 +03:00
.It Fl c
Displays information in the format used by the
.Nm
builtin of
.Xr csh 1 .
1993-03-21 12:45:37 +03:00
.It Fl l
Lists resource utilization information.
1993-03-21 12:45:37 +03:00
The contents of the
2011-10-02 05:47:27 +04:00
.Ar command
process's
1993-03-21 12:45:37 +03:00
.Em rusage
structure are printed; see below.
.It Fl p
The output is formatted as specified by
.St -p1003.2-92 .
1993-03-21 12:45:37 +03:00
.El
.Pp
Some shells, such as
1993-03-21 12:45:37 +03:00
.Xr csh 1
and
2003-06-27 13:40:17 +04:00
.Xr ksh 1 ,
have their own and syntactically different builtin version of
.Nm .
The utility described here
1993-03-21 12:45:37 +03:00
is available as
.Pa /usr/bin/time
to users of these shells.
.Ss Resource Utilization
If the
.Fl l
2001-12-01 19:43:07 +03:00
option is given, the following resource usage
information is displayed
in addition to the timing information:
.Bl -item -offset indent -compact
.It
maximum resident set size
.It
average shared memory size
.It
average unshared data size
.It
average unshared stack size
.It
page reclaims
.It
page faults
.It
swaps
.It
block input operations
.It
block output operations
.It
messages sent
.It
messages received
.It
signals received
.It
voluntary context switches
.It
involuntary context switches
.El
Resource usage is the total for the execution of
2011-10-02 05:47:27 +04:00
.Ar command
and any child processes it spawns, as per
.Xr wait4 2 .
.Sh EXIT STATUS
The
.Nm
utility exits with one of the following values:
.Bl -tag -width indent
.It 1-125
2001-12-01 19:43:07 +03:00
An error occurred in the
.Nm
utility.
.It 126
2001-12-01 19:43:07 +03:00
The
2011-10-02 05:47:27 +04:00
.Ar command
was found but could not be invoked.
.It 127
2001-12-01 19:43:07 +03:00
The
2011-10-02 05:47:27 +04:00
.Ar command
could not be found.
.El
.Pp
2001-12-01 19:43:07 +03:00
Otherwise, the exit status of
.Nm
2001-12-01 19:43:07 +03:00
will be that of
2011-10-02 05:47:27 +04:00
.Ar command .
1993-03-21 12:45:37 +03:00
.Sh FILES
.Bl -tag -width \*[Lt]sys/resource.h\*[Gt] -compact
.It \*[Lt]sys/resource.h\*[Gt]
1993-03-21 12:45:37 +03:00
.El
2001-12-08 22:18:26 +03:00
.Sh SEE ALSO
.Xr csh 1 ,
.Xr ksh 1 ,
.Xr getrusage 2
.Sh STANDARDS
The
1993-03-21 12:45:37 +03:00
.Nm
2001-12-01 19:43:07 +03:00
utility conforms to
.St -p1003.2-92 .
.Sh BUGS
The granularity of seconds on microprocessors is crude and
can result in times being reported for CPU usage which are too large by
a second.