Linux下,按tab补全时,忽略大小写的配置
编辑 /etc/inputrc 文件
# vim /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

            评论
        0 评论