The Linux command "man" displays manpages
116
votes
5answers
5k views
What do the parentheses and number after a Unix command or C function mean?
I keep seeing parentheses and a number after a command in Unix or Linux or C function.
For example: man(8), ftok(2), mount(8), etc.
What do these mean? I see them in man too.
4
votes
3answers
367 views
what does crypt(3) and whatnot mean [duplicate]
Possible Duplicate:
What do the parentheses and number after a Linux command or C function mean?
In Linux Manpages (http://linux.die.net/man/3/crypt) I often see sth like this: crypt(3), ...
1
vote
1answer
183 views
What are the numbers in parentheses in the names of unix tools? [duplicate]
Possible Duplicate:
what does crypt(3) and whatnot mean
I'm talking about, e.g. in the git Manual pages, on the git(1) page,
See gittutorial(7) to get started,
or
git-add(1)
...
8
votes
3answers
6k views
Bash Man Page: kill <pid> vs kill -9 <pid>
My man page does not document the difference between
kill <pid>
and
kill -9 <pid>
Since these do different things why is the -9 not documented in the kill manpage? I thought maybe ...
1
vote
1answer
79 views
What are the numbers in some unix manuals refering to? [duplicate]
Possible Duplicate:
What are the numbers in parentheses in the names of unix tools?
Hello,
what these numbers I see in manual pages for linux commands?
See this gittutorial(7)[tutorial] to ...