Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

E.g man(1), find(3), updatedb(2) ? what do these numbers mean ?

share|improve this question
6  
@new123456 english.stackexchange.com – username Aug 2 '11 at 1:41
man pages will give some introduction, use (man 1 intro) (man 2 intro) – sena Aug 23 '12 at 11:22

closed as off topic by casperOne Jul 26 '12 at 12:47

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

6 Answers

up vote 79 down vote accepted

It's the section that the man page for the command is assigned to.

These are split as

  1. General commands
  2. System calls
  3. C library functions
  4. Special files (usually devices, those found in /dev) and drivers
  5. File formats and conventions
  6. Games and screensavers
  7. Miscellanea
  8. System administration commands and daemons
share|improve this answer

The section the command is documented in the manual. The list of sections is documented on man's manual. For example:

man 1 man
man 3 find

This is useful for when similar or exactly equal commands exist on different sections

share|improve this answer
14  
And in the "olden days" the section numbers corresponded to the binder that the hardcopy version of the man page was in. – Darron Sep 29 '08 at 1:43

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.

share|improve this answer

Note also that on other unixes, the method of specifying the section differs. On solaris, for example, it is:

man -s 1 man
share|improve this answer

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)
Standard C Library Functions printf(3C)

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 ...'

share|improve this answer

Here is a rather complete listing of section numbers...

http://blogs.oracle.com/rv/entry/unix_manual_sections (broken)

Wikipedia details about Manual Sections

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.