2

When googling for linux commands, I often see a number in parenthesis like this:

mklost+found(8)

What does it mean?
Is it a version number of the program, reference to some standard, or what?

TPS
  • 2,481
  • not duplicate, as asker don't know whether it is referring to a man page. – TPS Sep 28 '14 at 09:05
  • 1
    @Tejas where else do you see the name of a command followed by a number in parentheses? – jasonwryan Sep 28 '14 at 09:44
  • 1
    You are right but still I think this question is different. – TPS Sep 28 '14 at 10:01
  • Still a reason to close as duplicate, so this closed question will redirect to the one it's duplicating. That prevents duplication of answers and people having to search all over the place and compare answers – Anthon Sep 28 '14 at 10:20

1 Answers1

2

The number refers the section in the system's reference manual in which the corresponding page resides, e.g. for command date, (date(1), in your case), 1 refers to the "user commands" section, which can be accessed by executing the command man 1 date.

See also man man. It lists all the standard sections:

The standard sections of the manual include:

  1      User Commands

2 System Calls

3 C Library Functions

4 Devices and Special Files

5 File Formats and Conventions

6 Games et. Al.

7 Miscellanea

8 System Administration tools and Deamons

Distributions customize the manual section to their specifics, which often include additional sections.

TPS
  • 2,481
  • You might as well just replace your answer with a link to http://unix.stackexchange.com/a/3587/33055. – Anthon Sep 28 '14 at 10:23