Linux history命令:查看命令历史记录。
Linux history命令 功能描述
使用history命令可以查看命令历史记录,每一条命令前面都会有一个序列号标示。
Linux history命令 语法
history [选项]
命令中各选项的含义如下表所示。
在Linux系统中使用命令历史的举例如下表所示。
通过下表所示的快捷键可以非常方便地搜索历史命令。
Linux history命令 示例
查看命令历史记录
[root@rhel ~]# history
//显示过去曾经输入过的命令,就两列信息:编号和命令
显示执行过的前两条命令
[root@rhel ~]# history 2
将历史命令立即从内存写入.bash_history文件
[root@rhel ~]# history -w
将目前新增的history历史命令写入.bash_history文件
[root@rhel ~]# history -a
清空命令历史记录
[root@rhel ~]# history -c