本文介绍了手册页中Unix命令名称后的括号中的数字是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如:man(1)
,find(3)
,updatedb(2)
?
括号(英国的方括号")中的数字是什么意思?
What do the numbers in parentheses (Brit. "brackets") mean?
推荐答案
这是命令手册页所分配到的部分.
It's the section that the man page for the command is assigned to.
这些被拆分为
- 常规命令
- 系统调用
- C库函数
- 特殊文件(通常是设备,在/dev中找到的设备)和驱动程序
- 文件格式和约定
- 游戏和屏保
- 杂项
- 系统管理命令和守护程序
每个部分的原始说明可以在 Unix程序员手册(第ii页).
Original descriptions of each section can be seen in the Unix Programmer's Manual (page ii).
这篇关于手册页中Unix命令名称后的括号中的数字是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!