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.

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

history
===
用于显示历史命令
## 补充说明
**history命令** 用于显示指定数目的指令命令,读取历史命令文件中的目录到历史命令缓冲区和将历史命令缓冲区中的目录写入命令文件。
该命令单独使用时,仅显示历史命令,在命令行中,可以使用符号`!`执行指定序号的历史命令。例如要执行第2个历史命令则输入`!2`。
历史命令是被保存在内存中的当退出或者登录shell时会自动保存或读取。在内存中历史命令仅能够存储1000条历史命令该数量是由环境变量`HISTSIZE`进行控制。
### 语法
```
history(选项)(参数)
```
### 选项
```
-c清空当前历史命令
-a将历史命令缓冲区中命令写入历史命令文件中
-r将历史命令文件中的命令读入当前历史命令缓冲区
-w将当前历史命令缓冲区命令写入历史命令文件中。
```
### 参数
n打印最近的n条历史命令。
### 实例
使用history命令显示最近使用的10条历史命令输入如下命令
```
[root@localhost ~]# history 10
92 ls
93 cd ..
94 ls
95 exit
96 ls -a
97 cd .ssh/
98 ls
99 cat known_hosts
100 exit
101 history 10
```
列出最近3条记录
```
[root@localhost ~]# history 3
15 2017-08-26 11:44:35 root history 3
16 2017-08-26 11:44:37 root history n
17 2017-08-26 11:44:40 root history 3
```
清空历史记录
```
[root@localhost ~]# history -c
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->