linux man命令后面各种括号的意义
Posted Antiver
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux man命令后面各种括号的意义相关的知识,希望对你有一定的参考价值。
圆括号
我们经常会看到 在说一个对象的man page 的时候,会有这样的格式:
mmap(2)
shm_open(3)
这个后面的数字是什么意思呢,通过 man man 命令就可以知道,这个是数字是,section
大多数类unix 操作系统,都采用相同的section 的约定:
Section 1
user commands (introduction)
Section 2
system calls (introduction)
Section 3
library functions (introduction)
Section 4
special files (introduction)
Section 5
file formats (introduction)
Section 6
games (introduction)
Section 7
conventions and miscellany (introduction)
Section 8
administration and privileged commands (introduction)
Section L
math library functions
Section N
tcl functions
通过后面的数字,你就能明白一个函数是系统调用,还是只是一个类库中的一个函数。这个数字还是相当有意义的。
方括号
在方括号内的表达式(“[” 和 “]”之间的字符)是可选的(写命令时要去掉括号)。
尖括号
在尖括号内的表达式(“[” 和 “]”之间的字符)是必须替换的表达式(而且要去掉括号)。
省略号
省略号表示该选项可以单个或多个
以上是关于linux man命令后面各种括号的意义的主要内容,如果未能解决你的问题,请参考以下文章
linux系统上获取命令的帮助信息以及man文档的章节是如何划分的