Sun Microsystems, Inc. gratefully acknowledges The Open Group for
permission to reproduce portions of its copyrighted documentation.
Original documentation from The Open Group can be obtained online at
http://www.opengroup.org/bookstore/.
The Institute of Electrical and Electronics Engineers and The Open
Group, have given us permission to reprint portions of their
documentation.
In the following statement, the phrase ``this text'' refers to portions
of the system documentation.
Portions of this text are reprinted and reproduced in electronic form
in the SunOS Reference Manual, from IEEE Std 1003.1, 2004 Edition,
Standard for Information Technology -- Portable Operating System
Interface (POSIX), The Open Group Base Specifications Issue 6,
Copyright (C) 2001-2004 by the Institute of Electrical and Electronics
Engineers, Inc and The Open Group. In the event of any discrepancy
between these versions and the original IEEE and The Open Group
Standard, the original IEEE and The Open Group Standard is the referee
document. The original Standard can be obtained online at
http://www.opengroup.org/unix/online.html.
This notice shall appear on any product containing this material.
The contents of this file are subject to the terms of the
Common Development and Distribution License (the "License").
You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
or http://www.opensolaris.org/os/licensing.
See the License for the specific language governing permissions
and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each
file and include the License file at usr/src/OPENSOLARIS.LICENSE.
If applicable, add the following below this CDDL HEADER, with the
fields enclosed by brackets "[]" replaced with your own identifying
information: Portions Copyright [yyyy] [name of copyright owner]
Copyright 1989 AT&T
Copyright (c) 1992, X/Open Company Limited All Rights Reserved Portions
Portions Copyright (c) 1982-2007 AT&T Knowledge Ventures
Portions Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved
Portions Copyright (c) 2013, Joyent, Inc. All Rights Reserved
/usr/bin/head [-q] [-v] [-number ] [ -n number ] [ -c number] [filename]...
head [-qv] [-n lines] [-c chars] [-s skip] [filename]...
When more than one file is specified, the start of each file looks like:
==> filename <==
Thus, a common way to display a set of short files, identifying each one, is:
example% head -9999 filename1 filename2 ...
head copies one or more input files to standard output, stopping at a designated point for each file or to the end of the file whichever comes first. Copying ends at the point indicated by the options. By default, a header of the form ==> filename <== is output before all but the first file but this can be changed with the -q and -v options. If no file is given, or if the file is -, head copies from standard input starting at the current location.
The option argument for -c and -s can optionally be followed by one of the following characters to specify a different unit other than a single byte: b
512 bytes
1-kilobyte
1-megabyte
For backwards compatibility, -number is equivalent to -n number.
The first number lines of each input file is copied to standard output. The number option-argument must be a positive decimal integer.
The first number bytes of each input file is copied to standard output. The number option-argument must be a positive decimal integer. Note, output may end in the middle of a character if a file contains multi-byte characters.
The number argument is a positive decimal integer with the same effect as the -n number option.
head will not print a header in between each specified file.
head will always print a header before each file, even if only one file is specified.
If no options are specified, head acts as if -n 10 had been specified.
--lines=lines
Copy lines from each file. The default value is 10.
--bytes=chars
Copy chars bytes from each file.
--quiet|silent
Never output filename headers.
--skip=skip
Skip skip characters or lines from each file before copying.
--verbose
Always output filename headers.
A path name of an input file. If no file operands are specified, the standard input is used.
The following example writes the first ten lines of all files, except those with a leading period, in the directory:
example% head *
Successful completion.
An error occurred.
ATTRIBUTE TYPE ATTRIBUTE VALUE |
CSI Enabled |
Interface Stability Committed |
Standard See standards(7). |
ATTRIBUTE TYPE ATTRIBUTE VALUE |
Interface Stability See below. |
The ksh93 built-in binding to /bin and /usr/bin is Volatile. The built-in interfaces are Uncommitted.