1994-05-27 12:33:43 +00:00
|
|
|
.\" Copyright (c) 1980, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" 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.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00: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
|
1999-08-28 01:08:13 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
.\"
|
2006-09-29 15:20:48 +00:00
|
|
|
.Dd May 14, 2006
|
1994-05-27 12:33:43 +00:00
|
|
|
.Dt TIME 1
|
2001-07-10 14:16:33 +00:00
|
|
|
.Os
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm time
|
|
|
|
.Nd time command execution
|
|
|
|
.Sh SYNOPSIS
|
1997-08-14 06:48:59 +00:00
|
|
|
.Nm
|
2000-10-28 21:48:53 +00:00
|
|
|
.Op Fl al
|
|
|
|
.Op Fl h | Fl p
|
1998-07-27 16:54:05 +00:00
|
|
|
.Op Fl o Ar file
|
2002-06-20 07:07:00 +00:00
|
|
|
.Ar utility Op Ar argument ...
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
1997-08-14 06:48:59 +00:00
|
|
|
.Nm
|
1994-05-27 12:33:43 +00:00
|
|
|
utility
|
|
|
|
executes and
|
2002-06-20 07:12:34 +00:00
|
|
|
times the specified
|
|
|
|
.Ar utility .
|
1994-05-27 12:33:43 +00:00
|
|
|
After the
|
2002-06-20 07:07:00 +00:00
|
|
|
.Ar utility
|
1994-05-27 12:33:43 +00:00
|
|
|
finishes,
|
1997-08-14 06:48:59 +00:00
|
|
|
.Nm
|
1994-05-27 12:33:43 +00:00
|
|
|
writes to the standard error stream,
|
2001-07-15 08:06:20 +00:00
|
|
|
(in seconds):
|
1994-05-27 12:33:43 +00:00
|
|
|
the total time elapsed,
|
1999-03-10 17:22:12 +00:00
|
|
|
the time used to execute the
|
2002-06-20 07:07:00 +00:00
|
|
|
.Ar utility
|
1999-03-10 17:22:12 +00:00
|
|
|
process and the time consumed by system overhead.
|
1994-05-27 12:33:43 +00:00
|
|
|
.Pp
|
2003-06-09 19:37:45 +00:00
|
|
|
The following options are available:
|
|
|
|
.Bl -tag -width indent
|
1998-07-27 16:54:05 +00:00
|
|
|
.It Fl a
|
|
|
|
If the
|
|
|
|
.Fl o
|
|
|
|
flag is used, append to the specified file rather than overwriting
|
1999-09-14 11:46:04 +00:00
|
|
|
it.
|
|
|
|
Otherwise, this option has no effect.
|
2000-10-28 21:48:53 +00:00
|
|
|
.It Fl h
|
2004-07-02 22:22:35 +00:00
|
|
|
Print times in a human friendly format.
|
|
|
|
Times are printed in minutes, hours,
|
|
|
|
etc.\& as appropriate.
|
1998-07-28 10:08:16 +00:00
|
|
|
.It Fl l
|
|
|
|
The contents of the
|
|
|
|
.Em rusage
|
|
|
|
structure are printed as well.
|
1998-07-27 16:08:58 +00:00
|
|
|
.It Fl o Ar file
|
2001-07-15 08:06:20 +00:00
|
|
|
Write the output to
|
1998-07-24 07:19:29 +00:00
|
|
|
.Ar file
|
2004-07-02 22:22:35 +00:00
|
|
|
instead of stderr.
|
|
|
|
If
|
1998-07-24 07:19:29 +00:00
|
|
|
.Ar file
|
1998-07-27 16:54:05 +00:00
|
|
|
exists and the
|
|
|
|
.Fl a
|
|
|
|
flag is not specified, the file will be overwritten.
|
1999-03-10 17:22:12 +00:00
|
|
|
.It Fl p
|
|
|
|
Makes
|
|
|
|
.Nm
|
|
|
|
output POSIX.2 compliant (each time is printed on its own line).
|
1994-05-27 12:33:43 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
1999-09-08 15:40:46 +00:00
|
|
|
Some shells may provide a builtin
|
|
|
|
.Nm
|
1999-09-14 11:46:04 +00:00
|
|
|
command which is similar or identical to this utility.
|
|
|
|
Consult the
|
1999-09-08 15:40:46 +00:00
|
|
|
.Xr builtin 1
|
2001-07-15 08:06:20 +00:00
|
|
|
manual page.
|
2006-05-14 13:16:19 +00:00
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Nm
|
|
|
|
receives a
|
|
|
|
.Dv SIGINFO
|
|
|
|
(see the status argument for
|
|
|
|
.Xr stty 1 )
|
|
|
|
signal, the current time the given command is running will be written to the
|
|
|
|
standard output.
|
2002-06-28 09:31:03 +00:00
|
|
|
.Sh ENVIRONMENT
|
|
|
|
The
|
|
|
|
.Ev PATH
|
|
|
|
environment variable is used to locate the requested
|
|
|
|
.Ar utility
|
|
|
|
if the name contains no
|
|
|
|
.Ql /
|
|
|
|
characters.
|
2005-01-17 07:44:44 +00:00
|
|
|
.Sh EXIT STATUS
|
1999-03-10 17:22:12 +00:00
|
|
|
If
|
2002-06-20 07:07:00 +00:00
|
|
|
.Ar utility
|
1999-09-14 11:46:04 +00:00
|
|
|
could be timed successfully, its exit status is returned.
|
|
|
|
If
|
2002-06-20 07:07:00 +00:00
|
|
|
.Ar utility
|
1999-03-10 17:22:12 +00:00
|
|
|
terminated abnormally, a warning message is output to stderr.
|
2001-07-15 08:06:20 +00:00
|
|
|
If the
|
2002-06-20 07:07:00 +00:00
|
|
|
.Ar utility
|
1999-03-10 17:22:12 +00:00
|
|
|
was found but could not be run, the exit status is 126.
|
|
|
|
If no
|
2002-06-20 07:07:00 +00:00
|
|
|
.Ar utility
|
1999-03-10 17:22:12 +00:00
|
|
|
could be found at all, the exit status is 127.
|
|
|
|
If
|
|
|
|
.Nm
|
|
|
|
encounters any other error, the exit status is between 1 and 125
|
|
|
|
included.
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh SEE ALSO
|
1999-09-08 15:40:46 +00:00
|
|
|
.Xr builtin 1 ,
|
1997-02-06 05:21:39 +00:00
|
|
|
.Xr csh 1 ,
|
|
|
|
.Xr getrusage 2 ,
|
|
|
|
.Xr wait 2
|
1999-03-10 17:22:12 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility is expected to conform to ISO/IEC 9945-2:1993 (``POSIX'').
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
A
|
|
|
|
.Nm
|
2003-06-09 19:37:45 +00:00
|
|
|
utility appeared in
|
2002-06-03 14:54:04 +00:00
|
|
|
.At v3 .
|