10

我到处都能看到这些数字。例如,在这个页面上:http: //linux.die.net/man/1/tar

1数字中的含义是什么tar(1)?我也看过2、5等。

4

1 回答 1

10

它会告诉您其联机帮助页所在的组,或者更一般地说,该项目本身属于哪个组。以下是各部分及其内容的列表:

   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  conventions), e.g.
       man(7), groff(7)
   8   System administration commands (usually only for root)
   9   Kernel routines [Non standard]

有关更多详细信息,请参见“man”的联机帮助页。或者看看这里: http: //linux.die.net/man/

有时来自不同组的项目可以具有相同的名称,这是区分它们的方法。例如,有一个printf(1)的手册页,它是一个可执行文件,可从 shell 调用,还有一个printf(3)的手册页,它是一个在 stdio.h 中定义的 C 函数。

使用 bash 中的 man 二进制文件,您可以通过以下方式调用不同的联机帮助页:

man printf       # displays printf(1)
man 1 printf     # displays printf(1)
man 3 prinft     # displays printf(3)
man -a printf    # displays all manpages matching printf

根据系统上安装的手册页,您有时会从不同手册中获取同一项目的页面。例如,Linux 程序员手册中的printf(3)可以有Posix 程序员手册中的printf(3p)对应物。

于 2012-07-10T00:51:30.310 回答