Debian Bash Completion

If you got used to bash completion under ubuntu and want this feature under debian too, you first have to install the package bash-completion with your favourite package manager.

apt-get install bash-completion

Then add the following to your /etc/profile to enable the feature for all users:

if [ -f /etc/bash_completion ]; then
 . /etc/bash_completion
fi

Your have to relogin after adding this to enable the feature.

Leave a Comment