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.

58 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.

fc
===
修改历史命令并执行
## 补充说明
**fc命令** 自动掉用vi编辑器修改已有历史命令当保存时立即执行修改后的命令也可以用来显示历史命令。fc命令编辑历史命令时会自动调用vi编辑器。fc保存文件后会自动执行所编辑过的命令。
### 语法
```
fc [-e 编辑器名] [-lnr] [起始] [终结]
fc -s [模式=替换串] [命令]
```
### 选项
```
-l显示历史命令
-n显示历史命令时不显示编号
-r反序显示历史命令。
```
### 参数
* 起始指令编号:指定要编辑的起始指令编号;
* 结尾指令编号:指定要编辑的结尾指令编号。
### 实例
使用该指令显示最近使用的10条历史命令输入如下命令
```
[root@localhost ~]# fc -l -10 #显示10条历史命令
1039 type -a grep
1040 export
1041 history 10
1042 ulimit -a
1043 shopt
1044 help ls
1045 help env
1046 help short
1047 help shopt
1048 showkey -a
```
第一列信息是历史命令的编号第二列信息是历史命令的具体格式。若用户需要编辑第1040条历史命令时则输入如下命令
```
fc 1040 #编辑第1040条历史命令
```
命令执行成功后将自动调用vi编辑器编辑指定的命令编辑完成后保存会自动执行修改后的命令。当用户在vi编辑器中修改指令并保存后被修改的命令会被自动调用并执行。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->