You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

man
===
查看Linux中的指令帮助
## 补充说明
**man命令** 是Linux下的帮助指令通过man指令可以查看Linux中的指令帮助、配置文件帮助和编程帮助等信息。
### 语法
```
man(选项)(参数)
```
### 选项
```
-a在所有的man帮助手册中搜索
-f等价于whatis指令显示给定关键字的简短描述信息
-P指定内容时使用分页程序
-M指定man手册搜索的路径。
```
### 参数
* 数字指定从哪本man手册中搜索帮助
* 关键字:指定要搜索帮助的关键字。
### 数字代表内容
```
1用户在shell环境可操作的命令或执行文件
2系统内核可调用的函数与工具等
3一些常用的函数(function)与函数库(library)大部分为C的函数库(libc)
4设备文件说明通常在/dev下的文件
5配置文件或某些文件格式
6游戏(games)
7惯例与协议等如Linux文件系统网络协议ASCII code等说明
8系统管理员可用的管理命令
9跟kernel有关的文件
```
### 实例
我们输入`man ls`它会在最左上角显示“LS1在这里“LS”表示手册名称而“1”表示该手册位于第一节章同样我们输`man ifconfig`它会在最左上角显示“IFCONFIG8”。也可以这样输入命令“man [章节号] 手册名称”。
man是按照手册的章节号的顺序进行搜索的比如
```
man sleep
```
只会显示sleep命令的手册,如果想查看库函数sleep就要输入:
```
man 3 sleep
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->