Intro
Intro
This part covers how to find answers on the system itself before searching the web. Offline docs match the versions you actually installed — critical when flags change between releases.
Commands in this part
| Command | Role |
|---|---|
man |
man displays the system manual. |
| help (shell builtin) | help shows documentation for shell builtins — commands implemented inside the shell itself (cd, export, read, [[,… |
info |
info reads documentation in Info (Texinfo) format. |
apropos |
apropos searches man page names and short descriptions for keywords. |
whatis |
whatis prints single-line descriptions from the man-db whatis index. |
Suggested starting points
- Quick hint:
whatis cmdorcmd --help. - Full story:
man cmd(try section 5 for configs, 8 for admin tools). - Forgot the name:
apropos keyword, then open the best hit withman. - Shell builtin:
type cmd, thenhelp cmdif it is a builtin. - GNU deep dive:
infofor coreutils, bash, and related tools.