010-160 · Question #54
What command would you use to get comprehensive documentation about any command in Linux?
The correct answer is D. man command. The man command (short for manual) is the standard Linux utility for displaying comprehensive reference documentation for commands, system calls, and configuration files.
Question
Options
- Ahelp command
- Becho command
- Clocate command
- Dman command
- Eget command
How the community answered
(53 responses)- A2% (1)
- D94% (50)
- E4% (2)
Why each option
The man command (short for manual) is the standard Linux utility for displaying comprehensive reference documentation for commands, system calls, and configuration files.
The help builtin only provides brief usage information for bash shell builtins, not comprehensive documentation for all commands.
echo outputs text or variable values to standard output and has no documentation lookup functionality.
locate searches the filesystem for files by name and is unrelated to command documentation.
The man command reads structured manual pages (man pages) stored on the system, providing detailed documentation including synopsis, description, options, and examples for virtually any installed command or system call. It is the canonical tool for comprehensive command documentation on Linux and other Unix-like systems.
get is not a standard Linux command for documentation - it does not exist as a documentation utility.
Concept tested: Linux man command for accessing manual pages
Source: https://man7.org/linux/man-pages/man1/man.1.html
Topics
Community Discussion
No community discussion yet for this question.