Tips for the Bash shell

Enable smart completion

To enable smart bash tab completion you have to uncomment the lines
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
in the file /etc/bash.bashrc
.