手册页中命令后括号中的数字是什么意思?

Joh*_*ood 4 command-line manpage

通常,我会阅读诸如命令time(1)printf(3)联机帮助页之类的内容。

括号里的数字代表什么?

bel*_*qua 6

我相信你指的是手册页。

该数字指的是记录该命令的联机帮助页部分。这是历史上的 Unixism。见man man

要访问不同的部分,请在命令中提供编号,例如:

man 1 time
man 7 time
Run Code Online (Sandbox Code Playgroud)

以下是手册页部分:

   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]
Run Code Online (Sandbox Code Playgroud)