Chapter 8
Getting help: man and --help
Updated July 3, 2026
The main skill of Part I is not memorizing every command but being able to find the answer quickly in the system itself. The documentation is already on disk.
$ man ls # the full manual for a commandInside man, navigation is like less: arrows scroll, /word searches, q quits. The manual shows every option, the format of the arguments, and examples. When you only need a short reference, most commands have a --help flag:
$ ls --help # condensed help straight to the terminalIf you do not remember the command name but you know what it does, search by keyword:
$ apropos copy # commands whose description contains "copyLocked
The rest of this chapter is part of a paid course
You are reading the open part. Buy the course to read the whole chapter.