Ubuntu20.04完善Tab自动补全功能
1.打开inputrc文件
gedit /etc/inputrc
2.在文件的末尾添加如下代码
# do not show hidden files in the list set match-hidden-files off # auto complete ignoring case set show-all-if-ambiguous on set completion-ignore-case on "\e[A": history-search-backward "\e[B": history-search-forward
含义:
[1] how-all-if-ambiguous : 默认情况下,按下两次 <tab> 才会出现提示,现在只需要一次了。
[2] match-hidden-files : 不显示隐藏文件,特别是当你在 Home 目录时,你会觉得眼前好干净。
[3] completion-ignore-case : 在自动补全时忽略大小写
[4] history-search-* : 输入某个命令的一部分时,按上下箭头,会匹配关于这个这命令最近的使用历史。