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.

27 lines
552 B

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.

# **fc**
## 说明
**fc命令** 自动掉用vi编辑器修改已有历史命令当保存时立即执行修改后的命令也可以用来显示历史命令。fc命令编辑历史命令时
会自动调用vi编辑器。fc保存文件后会自动执行所编辑过的命令
## 选项
```markdown
用法:fc [-e 编辑器名] [-lnr] [起始] [终结] 或 fc -s [模式=替换串] [命令]
-l
-n显示历史命令时不显示编号
-r反序显示历史命令
```
## 实例
```bash
fc -l -10 #显示10条历史命令
```