例如:man(1), find(3), updatedb(2)?
括号里的数字是什么?“括号”)的意思吗?
例如:man(1), find(3), updatedb(2)?
括号里的数字是什么?“括号”)的意思吗?
当前回答
还要注意,在其他unix上,指定section的方法是不同的。例如,在solaris上,它是:
man -s 1 man
其他回答
它表示命令所在的手册页部分。man命令上的-s开关可用于将搜索限制在某些部分。
当你查看手册页时,左上角给出了该部分的名称,例如:
printf(1) 标准C函数printf(3C)
因此,如果您试图查找C函数,并且不希望意外地看到具有相同名称的用户命令的页面,您可以执行'man -s 3C…'
正如@Ian G所说,它们是手册页部分。让我们更进一步:
1. 使用man man查看man命令的手册页,它显示了如下9个部分:
DESCRIPTION
man is the system's manual pager. Each page argument given
to man is normally the name of a program, utility or func‐
tion. The manual page associated with each of these argu‐
ments is then found and displayed. A section, if provided,
will direct man to look only in that section of the manual.
The default action is to search in all of the available sec‐
tions following a pre-defined order ("1 n l 8 3 2 3posix 3pm
3perl 5 4 9 6 7" by default, unless overridden by the SEC‐
TION directive in /etc/manpath.config), and to show only the
first page found, even if page exists in several sections.
The table below shows the section numbers of the manual fol‐
lowed by the types of pages they contain.
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions eg /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conven‐
tions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
A manual page consists of several sections.
2. Man <section_num> <cmd> . sh
让我们想象一下,您正在谷歌搜索Linux命令。你可以找到OPEN(2) pg online: OPEN(2) - Linux手册页。
要在您的电脑上的手册页中看到这一点,只需键入man 2 open。
对于FOPEN(3)使用man 3 FOPEN等。
3.Man <section_num> intro
要读取一个节的介绍页,输入man <section_num> intro,例如man 1 intro, man 2 intro, man 7 intro等。
要连续查看所有手册页介绍,一个接一个,做man -a介绍。第1部分的介绍页面将打开。按q退出,然后按Enter查看第8节的介绍。按q退出,然后按Enter查看第3节的介绍。继续这个过程直到完成。每次点击q后,它会带你回到主终端屏幕,但你仍然会看到一个交互式提示,你会看到这行:
--Man-- next: intro(8) [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]
请注意,man -a介绍将带您通过的Section顺序是:
第一节 8节 第三节 第二节 第五节 第四节 第六节 第七节
这个搜索顺序是故意的,正如man手册页解释的那样:
The default action is to search in all of the available sections follow‐
ing a pre-defined order ("1 n l 8 3 2 3posix 3pm 3perl 5 4 9 6 7" by default, unless overrid‐
den by the SECTION directive in /etc/manpath.config)
他们为什么选择这个顺序?我不知道(如果你知道,请在评论中回答),但要意识到这个顺序是正确的和故意的。
相关:
谷歌搜索“linux函数后括号中的数字是什么意思?” SuperUser: Unix命令或C函数后面的括号和数字是什么意思? Unix和Linux:手册页中的数字是什么意思?
维基百科关于手册章节的详细信息:
将军的命令 系统调用 库函数,特别包括C标准库 特殊文件(通常是在/dev中找到的设备)和驱动程序 文件格式和约定 游戏和屏保 杂集 系统管理命令和守护进程
它是命令的手册页分配给的部分。
这些被分割为
将军的命令 系统调用 C库函数 特殊文件(通常是在/dev中找到的设备)和驱动程序 文件格式和约定 游戏和屏保 杂集 系统管理命令和守护进程
每个部分的原始描述可以在Unix程序员手册(第ii页)中看到。
为了访问“foo(5)”给出的手册页,运行:
man 5 foo
还要注意,在其他unix上,指定section的方法是不同的。例如,在solaris上,它是:
man -s 1 man