Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

change bash suggestions to be case insensitive

# If ~/.inputrc doesn't exist yet: First include the original /etc/inputrc
# so it won't get overriden
if [ ! -a ~/.inputrc ]; then echo '$include /etc/inputrc' > ~/.inputrc; fi

# Add shell-option to ~/.inputrc to enable case-insensitive tab completion
echo 'set completion-ignore-case On' >> ~/.inputrc
Source by askubuntu.com #
 
PREVIOUS NEXT
Tagged: #change #bash #suggestions #case #insensitive
ADD COMMENT
Topic
Name
7+1 =