freeCodeCamp/guide/chinese/bash/bash-man/index.md

31 lines
576 B
Markdown
Raw Blame History

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.

---
title: Bash Man
localeTitle: Bash Man
---
## 人
Man **man** ual的缩写是一个bash命令用于显示给定命令的在线参考手册。
Man显示给定命令的相关手册**页** **man** ual **页面的**缩写)。
### 用法
```bash
man [options] [command]
```
最常用的选项:
* `-f` ,打印给定命令的简短描述
* `-a` ,连续显示手册中包含的所有可用的介绍手册页
### 例
显示ls的手册页
```bash
man ls
```
#### 更多信息:
* 维基百科https//en.wikipedia.org/wiki/Man\_page