vote up 5 vote down star

How do I access specific sections of man pages?

flag

73% accept rate

3 Answers

vote up 10 vote down check

Put the section number in front of the item you want to reference. For example, to access the sysctl function from the library section, you can write:

man 3 sysctl

and to access the sysctl tool from the system administrator's section, you would write:

man 8 sysctl
link|flag
vote up 3 vote down

To add to what Jason said: if you're not sure what section something is in, you can also see all of the man pages for a given topic by typing

man -a topic

This is useful for topics such as printf, for which there is both a command and a C function that do similar things.

link|flag
the apropos flga will only work on systems after catman has been run – Rob Wells Nov 6 '08 at 23:14
oops. s/flag/flga/ – Rob Wells Nov 6 '08 at 23:14
I think the -a flag just lists entries for a specific item in all the sections... to emulate apropos I think you use the -k flag... – Jason Coco Nov 6 '08 at 23:32
vote up 0 vote down

use the -s flag, for example:

man -s 2 read

you might like to look at

man intro

to get an idea of what's where.

HTH.

cheers,

Rob

link|flag
'man -s N' is Unix Sys V (if not SVR4) style - and supported by POSIX, but not supported by Linux (nor, I think, MacOS X). – Jonathan Leffler Nov 7 '08 at 6:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.