输入可以看到 man 一共有 9 个 section
echo (1)
表示这个echo是属于 section 1
另一个例子是 printf
这个既是shell命令又是C语言库函数
你输入 main printf 的时候 man 怎么知道你需要哪个
shell命令在section 1
库函数在section 3
man 会选择数字最小的那个,这个例子就是 section 1
也就是你输入相当于输入你可以输入来查看库函数
echo (3x) 就是 section 3x
我这边没有查到这个
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, e.g. /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]
|