svcadm(8)을 검색하려면 섹션에서 8 을 선택하고, 맨 페이지 이름에 svcadm을 입력하고 검색을 누른다.
head(1)
head(1) User Commands head(1)
NAME
head - display first few lines of files
SYNOPSIS
/usr/bin/head [-number | -n number] [filename]...
DESCRIPTION
The head utility copies the first number of lines of each filename to
the standard output. If no filename is given, head copies lines from
the standard input. The default value of number is 10 lines.
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 ...
OPTIONS
The following options are supported:
-n number The first number lines of each input file is copied to
standard output. The number option-argument must be a pos‐
itive decimal integer.
-number The number argument is a positive decimal integer with the
same effect as the -n number option.
If no options are specified, head acts as if -n 10 had been specified.
OPERANDS
The following operand is supported:
filename A path name of an input file. If no file operands are spec‐
ified, the standard input is used.
EXAMPLES
Example 1 Writing the First Ten Lines of All Files
The following example writes the first ten lines of all files, except
those with a leading period, in the directory:
example% head *
ENVIRONMENT VARIABLES
See environ(7) for descriptions of the following environment variables
that affect the execution of head: LANG, LC_ALL, LC_CTYPE, LC_MESSAGES,
and NLSPATH.
EXIT STATUS
The following exit values are returned:
0 Successful completion.
>0 An error occurred.
ATTRIBUTES
See attributes(7) for descriptions of the following attributes:
tab() box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) ATTRIBUTE TYPEAT‐
TRIBUTE VALUE _ Availabilitysystem/core-os _ CSIEnabled _ Interface
StabilityCommitted _ StandardSee standards(7).
SEE ALSO
cat(1), more(1), pg(1), tail(1), attributes(7), environ(7), stan‐
dards(7)
Oracle Solaris 11.4 4 Feb 2015 head(1)