Here are some additions to my .bash_profile for making life easier. I especially like that completion now ignores case. Makes navigating the file system so much faster. Give them a spin.
[cc lang=”bash”]export HISTCONTROL=erasedups
export HISTSIZE=10000
shopt -s histappend
set completion-ignore-case on [/cc]