Man Pages
What are Linux Man Pages?
Description
The Man Pages on Linux essentially document everything. It's a manual for all things Linux - commands, functions, system calls, etc.
Using the Man Pages
man nmap
- Will give you detailed information on the nmap tool.
man -k ssh
- This searches man for the keyword, ssh. It is equivalent toapropos
.
apropos 'ssh daemon'
- This is equivalent toman -k
.
Last updated