[BACK]Return to head.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / head

File: [local] / src / usr.bin / head / head.1 (download)

Revision 1.23, Sun Oct 25 21:50:32 2015 UTC (8 years, 6 months ago) by zhuk
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, HEAD
Changes since 1.22: +4 -4 lines

Unify & improve paragraphs talking about "==> file <==" headers in
head(1) and tail(1).

Input & okay from jmc@

.\"	$OpenBSD: head.1,v 1.23 2015/10/25 21:50:32 zhuk Exp $
.\"
.\" Copyright (c) 1980, 1990 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.
.\" 3. Neither the name of the University nor the names of its contributors
.\"    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.
.\"
.\"	from: @(#)head.1	6.6 (Berkeley) 7/24/91
.\"
.Dd $Mdocdate: October 25 2015 $
.Dt HEAD 1
.Os
.Sh NAME
.Nm head
.Nd display first few lines of files
.Sh SYNOPSIS
.Nm head
.Op Fl Ar count | Fl n Ar count
.Op Ar
.Sh DESCRIPTION
The
.Nm
utility copies the first
.Ar count
lines of each specified
.Ar file
to the standard output.
If no files are named,
.Nm
copies lines from the standard input.
If
.Ar count
is omitted, it defaults to 10.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl Ar count | Fl n Ar count
Copy the first
.Ar count
lines of each input file to the standard output.
.Ar count
must be a positive decimal integer.
.El
.Pp
If more than one file is specified,
.Nm
precedes the output of each file with the following, in order
to distinguish files:
.Pp
.Dl ==> Ar file No <==
.Sh EXIT STATUS
.Ex -std head
.Sh EXAMPLES
To display the first 500 lines of the file
.Ar foo :
.Pp
.Dl $ head -n 500 foo
.Pp
.Nm
can be used in conjunction with
.Xr tail 1
in the following way to, for example, display only line 500 from the file
.Ar foo :
.Pp
.Dl $ head -n 500 foo | tail -1
.Sh SEE ALSO
.Xr cat 1 ,
.Xr cut 1 ,
.Xr less 1 ,
.Xr more 1 ,
.Xr tail 1
.Sh STANDARDS
The
.Nm
utility is compliant with the
.St -p1003.1-2008
specification.
.Pp
The historic syntax
.Fl Ar count
is supported by this implementation.
.Sh HISTORY
The
.Nm
utility first appeared in
.Bx 1 .
.Sh AUTHORS
.An Bill Joy ,
August 24, 1977.