Most people will change it when they use Bash, because the default settings are really hard to use.
Refer to the following ~/.INPUTRC settings:
Copy Code code as follows:
# don't 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
"\ep": History-search-backward
"\e[a": History-search-backward
"\e[b": History-search-forward
By default, press two times <tab> will appear prompts, show-all-if-ambiguous open, only need one time.
Turn off match-hidden-files do not show hidden files, especially when you are in the home directory, you will feel very clean.
Open Completion-ignore-case Ignore case, write PHP I estimate that about 1/4 of the keys are SHIFT + 4, damn dollar sign! Shell command, I do not want to be entangled with capital letters, let <tab> fix it.
history-search-*, enter a few letters and press up and down arrows to search your history commands.
For more Bash customization please refer to:
Https://wiki.ubuntu.com/Spec/EnhancedBash