红联Linux门户
Linux帮助

Ubuntu中bash自动补全忽略大小写

发布时间:2016-11-01 15:24:52来源:linux网站作者:guyue35
大多数人在使用 Bash 时,都会对其进行改造,因为默认的设置真的好难用。
编辑 ~/.inputrc 文件设置 (实测Ubuntu14是 /etc/.inputrc文件)
 
文件末尾添加如下代码:
# 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
 
解释:
show-all-if-ambiguous : 默认情况下,按下两次 <tab> 才会出现提示,现在只需要一次了。
match-hidden-files : 不显示隐藏文件,特别是当你在 Home 目录时,你会觉得眼前好干净。
completion-ignore-case : 在自动补全时忽略大小写
history-search-* : 输入某个命令的一部分时,按上下箭头,会匹配关于这个这命令最近的使用历史。
 
更多 Bash 定制请参考:
Ubuntu中bash自动补全忽略大小写
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25636.html