Man
Jump to navigation
Jump to search
man is a command to access the man page for a given command, function, or file.
Example:
$ man locate
Provided your man pages are working correctly, this will bring up detailed information about the locate program. Read man updatedb
while you're about it.
Man pages are sometimes split into sections. On most systems the sections are numbered 1 to 8, representing these categories:
- General commands
- Low-level system calls
- C library functions
- Special files (usually devices, those found in /dev)
- File formats and conventions
- Games
- Miscellanea
- System administration and associated commands
To view a specific section, you type the appropriate number before the name of the page you wish to view. For example, section 1 (general commands) of the command ls would be referred to as:
$ man 1 ls