本文介绍了手册页中 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).
为了访问以foo(5)"给出的手册页,运行:
In order to access a man page given as "foo(5)", run:
man 5 foo
这篇关于手册页中 Unix 命令名称后括号中的数字是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!