可能重复:
UNIX 工具名称中括号里的数字是什么?
您好,我在 Linux 命令手册页中看到这些数字是什么?
See this gittutorial(7)[tutorial] to get started,
then see Everyday Git[1] for a useful minimum set of commands,
and "man git-commandname" for documentation of each command.
CVS users may also want to read gitcvs-migration(7)[CVS migration].
See Git User's Manual[2] for a more in-depth introduction.
答案1
括号中的数字(
和)
表示“手册”的不同部分。如果你这样做man man
,它会告诉你哪些数字对应于“手册”的哪个部分。每个操作系统可能使用自己的手册页部分布局。这是我的 Ubuntu 系统的章节布局。
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]
如果您这样做man 1 printf
,您将获得有关 shell 实用程序的信息printf
,但如果您这样做man 3 printf
,您将获得有关printf
C 运行时中的函数的信息。
括号中的数字[
指]
的是外部资源,并且应该在您正在阅读的文章中进一步描述位置或 URL。