在Linux Bash通过上下键快速查找历史命令

时间:2021-08-10 16:26:33

在centos 7中 ~/.bashrc 或者Mac中的 ~/.bash_profile 中添加,然后source一下以下内容:

 

if [[ $- == *i* ]]
then
    bind '"\e[A": history-search-backward'
    bind '"\e[B": history-search-forward'
fi

 

-----------------------------------------------------------

 

比 ctrl+r 更准确、有效的在历史命令纪录中查找自己想要的命令:

1. 首先在该用户家目录下新建一个 .inputrc 文件,并在其中写入以下配置,如下:

[root@wjoyxt ~]# cat .inputrc
"\e[A": history-search-backward
"\e[B": history-search-forward
set show-all-if-ambiguous on
set completion-ignore-case on

2. 退出 bash 后重新登陆,输入一个字母或者几个字母,然后 按“上下” 键,就会看到以这个字母搜索到的完整命令行。如果搜索到几个类似命令,通过上下键来切换,有点像 ctrl+r,但是效果不一样。

------------------

或者把以上红色部分内容添加到 /etc/inputrc ,则系统下所有用户都可以实现该功能。

 

vim可以为操作当前行添加下划线  或者直接修改 /etc/vimrc永久生效。

 set cursorline