I often see number-suffixed command or system call names in man pages or other documentation, for example, splice(2).
Although, some publications don’t include the numbers, for example, Splice on Wikipedia.
I never found an explanation of what the numbers stand for and don’t even know where/how to begin a search.
- What do these numbers mean?
- What is the range for these numbers?
- Why are they suffixed to function and command names?
- Which communities use those numbers?
These numbers refer to Unix man sections.
You can specify a section number with the
mancommand by just listing the section number:would look for
somecommandin section 1 of the man pages.Wikipedia has some additional information on this as does this page on how to use man pages.