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

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

我经常会读到一些类似命令time(1)printf(3)手册页的内容。

括号里的数字代表什么?

答案1

我相信您指的是手册页。

数字指的是命令的手册页部分。这是历史悠久的 Unixism。请参阅man man

要访问不同的部分,您可以在命令中提供数字,例如:

man 1 time
man 7 time

以下是手册页部分:

   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]

相关内容