在使用centOS系统时,利用pageup和pagedown快捷搜索历史命令是一个非常实用的功能。而在ubuntu中却没有这样便利。其实ubuntu也有这个功能,默认处于关闭状态。可以用下面的操作开启。
- 使用文本编辑器打开/etc/inputrc
sudo vim /etc/inputrc
- 找到如下行,通常在30~40行。
# alternate mappings for "page up" and "page down" to search the history
# "\e[5~": history-search-backward
# "\e[6~": history-search-forward
- 去除对应行首的#号。
# alternate mappings for "page up" and "page down" to search the history
"\e[5~": history-search-backward
"\e[6~": history-search-forward
- 保存。结束当前命令行对话,之后新的命令行就可以使用该操作了。