All rights reserved, please indicate the source when citing
Manual Command Reference
The command man stands for manual page, which is a reference guide for commands. It serves as an online documentation for commands, and its basic usage is man COMMAND.
Upon entering the man interface, the main operations are as follows:
- Use ↑ or k to scroll upwards.
- Use ↓ or j to scroll downwards.
- Use the Page Up key or b to scroll up one page.
- Use the Page Down key or f to scroll down one page.
- Press q to exit the man interface.
例:
# man cat ← Look up usage of the "cat" command (exit with <q>)
# man 8 shutdown ←Look up section 8 documentation for the "shutdown" command |
For detailed usage and operations within the man interface, please refer to the link provided.