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?
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?
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.
man
page. – TPS Sep 28 '14 at 09:05