history命令 – 显示与管理历史命令记录
history命令的功能是显示与管理历史命令记录。Linux系统默认会记录用户执行过的有命令,可以使用history命令查阅它们,也可以对其记录进行修改和删除操作。
语法格式:history 参数
常用参数:
-a | 保存命令记录 | -r | 读取命令记录到缓冲区 | |
-c | 清空命令记录 | -s | 添加命令记录到缓冲区 | |
-d | 删除指定序号的命令记录 | -w | 将缓冲区信息写入历史文件 | |
-n | 读取命令记录 |
参考示例
显示执行过的全部命令记录:
[root@linuxcool ~]# history 1 vim /etc/sysconfig/network-scripts/ifcfg-ens160 2 reboot 3 vim /etc/sysconfig/network-scripts/ifcfg-ens160 4 vim /etc/yum.repos.d/rhel.repo 5 mkdir /media/cdrom ………………省略部分输出信息………………
显示最近执行过的5条命令:
[root@linuxcool ~]# history 5 11 exit 12 ifconfig 13 vim /etc/hostname 14 reboot 15 history
将本次缓存区信息写入历史文件(~/.bash_history):
[root@linuxcool ~]# history -w
将历史文件中的信息读入当前缓冲区:
[root@linuxcool ~]# history -r
将本次缓冲区信息追加写入历史文件(~/.bash_history):
[root@linuxcool ~]# history -a
清空本次缓冲区及历史文件中的信息:
[root@linuxcool ~]# history -c