| |||||||||
UNIX and Unix-like operating systems have extensive documentation available as an electronic manual, split into multiple sections called "man pages" (short for "manual pages" and based on the command used to display them). Each page in a "man page" collection is a self-contained document with independent copyright status.
To read a page from the manual, one can use the command
$ man [<section>] <page_name>
at a shell prompt, e.g. "man ftp" (the section number can usually be omitted). Pages are traditionally referred to using the notation "page_name(section)", e.g. ftp(1).
The section number is used to allow a specific manual page to be chosen when there are multiple manual pages with the same name. This can occur when the names of system calls, user commands, or commandsOn some systems some of three other sections are available:
| Section | Description |
|---|---|
| 9 | Kernel routines (obsolete) |
| n | Tcl/Tk keywords |
| x | The X Window System |
The manual pages are stored as nroff source files. Most versions of man cache the formatted versions of the last several pages viewed.
For an example of a man page see chmod.
This article was originally based on material from the Free On-line Dictionary of Computing and is used under the GFDL.