I see these numbers everywhere. For example, on this page: http://linux.die.net/man/1/tar
What is the meaning of the number – 1 in tar(1) ? I have seen 2, 5, etc also.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It tells you what group its manpage is in or, more generally, which group the item itself belongs to. Here’s a list of the sections and their contents:
See the manpage of ‘man’ for more details. Or have a look here:
http://linux.die.net/man/
Sometimes items from different groups can have the same name and this is the way to distinguish between them. For example, there is a manpage for printf(1) which is an executable, callable from a shell, as well as a manpage for printf(3) which is a C function definded in stdio.h.
Using the man binary from a bash you can call for the distinct manpages by:
Depending on what manpages are installed on the system you sometimes get pages from different manuals for the same item. For example printf(3) from the Linux Programmer’s Manual could have a printf(3p) counterpart from the Posix Programmer’s manual.