set completion-ignore-case on
But there were cases that I'm using somebody else's bash shell instead of my own, which does not disable that case-sensitivity and would cause inconvenience for me(yes, to some extent). And today an idea occurred to me that bash may very likely support some kind of volatile switching this feature on and off. So I tried `man bash` and found a rather ugly solution:
1. create a tmp file, let's say "/tmp/inputrc" and type that line above in it.
2. in this bash shell, set the $iNPUTRC env variable by type in the command `export INPUTRC=/tmp/inputrc`
3. also in this bash shell, press the keybinding C-x C-r(which runs the readline command "re-read-init-file") to load the setting just typed in.
and now this bash shell is enabled with case-insensitivy.
It's rather a tedious and ugly solution.
PS: I tried to run this command
set completion-ignore-case on
in the bash shell as described in this cyberciti page. But it proved no effect at all.
没有评论:
发表评论