man man Flashcards

1
Q

Each page given to man is normally the name of a ___, ___, or ___.

A
  • program
  • utility
  • function
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the 17 standard section of a man page?

A
  1. Name
  2. Synopsis
  3. Configuration
  4. Description
  5. Options
  6. Exit Status
  7. Return Value
  8. Errors
  9. Environment
  10. Files
  11. Versions
  12. Confoming To
  13. Notes
  14. Bugs
  15. Examples
  16. Authors
  17. See Also
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does “bold” text represent in a man page?

A

Type exactly as shown

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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.

A

Replace with appropriate argument

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does “[-abc]” text represent in a man page?

A

any or all arguments within [] are optional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does “-a | -b” represent in a man page?

A

options delimited by | cannot be used together

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does “argument…” text represent in a man page?

A

argument is repeatable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does “[expression] …” text represent in a man page?

A

Entire expression within [] is repeatable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the command to see a specific section of a man page?

A

man man.7

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the man command option to see all manual section of an item (program/utility/function)

A

-a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

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

A

man -k user_supplied_item

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

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

A

man -f user_supplied_item

How well did you know this?
1
Not at all
2
3
4
5
Perfectly