Most of bash commands have an help manual which can be opened in the command line by using the command man
:
man bash
man ssh_config
man sshd
On the first line of every man page for a command, we can see the name of the command immediately followed by a number within parentheses:
bash(1)
ssh_config(5)
sshd(8)
What does this number mean ? Does any of you know a page which would list all possible values of numbers which can appear between these parentheses and their meaning ?
Sections of the man pages
See man man for details =)
http://manpages.ubuntu.com/manpages/vivid/man1/man.1.html