Head (Unix)

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

Template:More citations needed Template:Short description Template:Lowercase

{{#invoke:Infobox|infobox}}Template:Template other {{#invoke:Check for unknown parameters|check|unknown=Template:Main other|preview=Page using Template:Infobox software with unknown parameter "_VALUE_"|ignoreblank=y| AsOf | author | background | bodystyle | caption | collapsetext | collapsible | developer | discontinued | engine | engines | genre | included with | language | language count | language footnote | latest preview date | latest preview version | latest release date | latest release version | latest_preview_date | latest_preview_version | latest_release_date | latest_release_version | licence | license | logo | logo alt | logo caption | logo class | logo size | logo title | logo upright | logo_alt | logo_caption | logo_class | logo_size | logo_title | logo_upright | middleware | module | name | operating system | operating_system | other_names | platform | programming language | programming_language | qid | released | replaced_by | replaces | repo | screenshot | screenshot alt | screenshot class | screenshot size | screenshot title | screenshot upright | screenshot_alt | screenshot_class | screenshot_size | screenshot_upright | service_name | size | standard | title | ver layout | website }}Template:Main other

<syntaxhighlight lang="text" class="" style="" inline="1">head</syntaxhighlight> is a program on Unix and Unix-like operating systems used to display the beginning of a text file or piped data.

Syntax

The command syntax is:

head [options] Template:Angbr

By default, Template:Tt will print the first 10 lines of its input to the standard output.

Option flags

Template:Glossary Template:Term Template:Term Template:Defn Template:Term Template:Term Template:Defn Template:Glossary end

Other command

Many early versions of Unix and Plan 9 did not have this command, and documentation and books used sed instead:

sed 5q filename

The example prints every line (implicit) and quit after the fifth.

Equivalently, awk may be used to print the first five lines in a file:

awk 'NR < 6' filename

However, neither sed nor awk were available in early versions of BSD, which were based on Version 6 Unix, and included head.<ref>Template:Cite journal</ref>

Implementations

A head command is also part of ASCII's MSX-DOS2 Tools for MSX-DOS version 2.<ref>MSX-DOS2 Tools User's Manual by ASCII Corporation</ref> The Template:Mono command has also been ported to the IBM i operating system.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

See also

References

Template:Reflist

Template:Sister project

Template:Unix commands Template:Core Utilities commands