man man Flashcards
Each page given to man is normally the name of a ___, ___, or ___.
- program
- utility
- function
What are the 17 standard section of a man page?
- Name
- Synopsis
- Configuration
- Description
- Options
- Exit Status
- Return Value
- Errors
- Environment
- Files
- Versions
- Confoming To
- Notes
- Bugs
- Examples
- Authors
- See Also
What does “bold” text represent in a man page?
Type exactly as shown
What does “italic text” represent in a man page?
Note: Exact rendering may vary depending on the output device. For instance man will usually not be able to render italics when running in a terminal, and will typically use underlined or coloured text instead.
Replace with appropriate argument
What does “[-abc]” text represent in a man page?
any or all arguments within [] are optional
What does “-a | -b” represent in a man page?
options delimited by | cannot be used together
What does “argument…” text represent in a man page?
argument is repeatable
What does “[expression] …” text represent in a man page?
Entire expression within [] is repeatable
What is the command to see a specific section of a man page?
man man.7
What is the man command option to see all manual section of an item (program/utility/function)
-a
What man command option searches the short description and manual page names for a specific keyword as a regular expression? It’s equavalent is apropos
man -k user_supplied_item
What man command option looks up the manual pages referenced by the item supplied to the option and prints out the short description of any found? It’s equivalent to whatis
man -f user_supplied_item