Ubuntu中bash自动补全忽略大小写
大多数人在使用 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 定制请参考:
原文链接:https://www.f2er.com/ubuntu/356292.html