1

Possible Duplicate:
What do the numbers in a man page mean?

As in the "(1)" in git-svn(1)

ripper234
  • 31,763

1 Answers1

4

Manpages are arranged into sections:

  1. General user commands
  2. System calls
  3. Standard library functions
  4. Special files
  5. File formats
  6. Games
  7. Conventions and operations
  8. System administration commands
  9. Kernel interfaces

(These have changed around a bit over the years, and on some systems you may in particular notice sections 4 and 5 swapped.) There may also be subsections, especially on System V-derived systems (3x, 3curses, etc.)

Some systems also have sections like l (local) and n (new). Tcl/Tk manpages in particular like to install in section n, since many of them conflict with standard commands and functions.

geekosaur
  • 32,047