E.g man(1), find(3), updatedb(2) ? what do these numbers mean ?
|
1
|
|
|
|
|
|
It's the section that the man page for the command is assigned to. These are split as
|
||
|
|
|
|
The section the command is documented in the manual. The list of sections is documented on man's manual. For example:
This is useful for when similar or exactly equal commands exist on different sections |
||
|
|
|
The reason why the section numbers are significant is that many years ago when disk space was more of an issue than it is now the sections could be installed individually. Many systems only had 1 and 8 installed for instance. These days people tend to look the commands up on google instead. |
||
|
|
|
|
It indicates the section of the man pages the command is found in. The -s switch on the man command can be used to limit a search to certain sections. When you view a man page, the top left gives the name of the section, e.g.: User Commands printf(1) So if you are trying to look up C functions and don't want to accidentally see a page for a user command that shares the same name, you would do 'man -s 3C ...' |
||
|
|
|
|
Note also that on other unixes, the method of specifying the section differs. On solaris, for example, it is:
|
||
|
|
|
|
Here is a rather complete listing of section numbers... |
||
|
|
