Possible Duplicate:
Why do programs in Unix-like environments have numbers after their name?
What does the (1) mean?
|
1
|
What does the (1) mean?
|
|||
|
closed as exact duplicate by Adam Rosenfield, dmckee, John Saunders, ephemient, crashmstr Jun 8 at 19:12 |
|
|
It's the manual section its
|
||
|
|
|
|
It refers the manual section - 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 |
||
|
|
|
|
From 'man man' on any reasonable unix system. |
||
|
|
|
|
All of the answers submitted previously are correct -- the (1) refers to the section of the online man pages. But your next question may as well be: why refer to the manual section at all? The answer is that the same word or command may appear in different sections. For example, "passwd" refers to both the command to change your password and to the file /etc/passwd. Consequently, if you are talking about the former, you should write passwd(1) and when talking about the latter, write passwd(5). The man command has a way of forcing it to use a specific section rather than searching from beginning to end. On my Unix system (a Mac), just typing man passwd will bring up the entry out of section 1. To show the entry out of section 5, use
|
|||
|
|