概述 shell中常见命令history 历史纪录命令:history 命令格式如下: [root@localhost ~]# history [选项] [历史命令保存文件] -c:清空历史命令: -w:把内存中的命令直接写入 ~/.bash_history 文件中 查询系统中当前用户的所有历史命令 [root@localhost ~]# history ls cd / ls poweroff -h now poweroff h now poweroff whereis ls …省略部分输出……
显示历史(执行过的)命令. history [n] history -c history -d offset history -anrw [filename] history -p arg [arg ...] history -s arg [arg ...] 不带任何参数显示所有执行过的命令.一个命令一行,每行前有行号.带*,表示曾被修改过. n ,显示最后(最近)执行的n命令. -c ,清空当前(缓冲区中)历史命令. -w,把缓存中的命令写入历史命令保存文件~/.bash_history…