linux常用命令 history命令
Posted 风中飞沙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux常用命令 history命令相关的知识,希望对你有一定的参考价值。
历史命令
history [选项] [历史命令保存文件]
选项
'-c'
清空历史命令
'-w'
把缓存中的历史命令写入历史命令保存文件~/.bash_history
[[email protected] ~]# cat .bash_history
exit
yum -y install yum
yum -y install wget
…
历史命令的调用
*) 使用上,下箭头调用以前的历史命令
*) 使用"!n"重复执行第n条历史命令
*) 使用"!!" 重复执行上一条命令
*) 使用"!字串"重复执行最后一条该字串开头的命令
[[email protected] ~]# ls
anaconda-ks.cfg ?install.log ?install.log.syslog ?shell_01.sh ?ssgao
[[email protected] ~]# !!
ls
anaconda-ks.cfg ?install.log ?install.log.syslog ?shell_01.sh ?ssgao
[[email protected] ~]# !ls
ls
anaconda-ks.cfg ?install.log ?install.log.syslog ?shell_01.sh ?ssgao
以上是关于linux常用命令 history命令的主要内容,如果未能解决你的问题,请参考以下文章
2017-7-18-每日博客-关于Linux下的history的常用命令.doc
Linux 命令(227)—— history 命令(builtin)