Bash Shell中忽略大小写的设置方法
大多数人在使用Bash时,都会对其进行改造,因为默认的设置真的好难用~
参考以下~/.inputrc设置:
#donotshowhiddenfilesinthelist setmatch-hidden-filesoff #autocompleteignoringcase setshow-all-if-ambiguouson setcompletion-ignore-caseon "\ep":history-search-backward "\e[A":history-search-backward "\e[B":history-search-forward
默认情况下,按下两次<tab>才会出现提示,show-all-if-ambiguous开启后,只需要一次了。
关掉match-hidden-files不显示隐藏文件,特比是当你在Home目录时,你会觉得眼前好干净。
开启completion-ignore-case忽略大小写,写PHP时我估计大约1/4的按键都是shift+4,该死的美元符号!Shell命令,我不想再和大写字母纠缠了,让<tab>搞定好了。
history-search-*,输入几个字母,按上下箭头,搜索你的历史命令。
更多Bash定制请参考:
https://wiki.ubuntu.com/Spec/EnhancedBash