首页 > 代码库 > 历史命令~/.bash_history

历史命令~/.bash_history

历史命令大小:/etc/profile中字段HISTSIZE=1000

历史命令保存文件:~/.bash_history

history -c 清空历史命令

history -w 把历史命令写入~/.bash_history

!n执行第n条历史命令

!!执行上一条历史命令

!字串  重复执行最后一条以该字串开头的历史命令


设置别名:alias 别名=‘原命令‘

命令执行顺序:1.绝对路径或相对路径;2.别名;3.bash内部命令;4.$PATH环境变量定义的目录查找到的第一个命令

历史命令~/.bash_history