# bash completion if [[ -f /etc/profile.d/bash-completion.sh ]]; then . /etc/profile.d/bash-completion.sh else bmajor=${BASH_VERSION%%.*} bminor=${BASH_VERSION#*.} bminor=${bminor//[^0-9]*} if [[ ${bmajor} -eq 2 && ${bminor} -gt 4 ]] || [[ ${bmajor} -gt 2 ]]; then [[ -f /etc/bash_completion ]] && source /etc/bash_completion if [[ -d ~/.bash_completion.d ]]; then for i in ~/.bash_completion.d/*; do [[ -f ${i} ]] && source ${i} done fi fi unset bmajor bminor fi export COMP_WORDBREAKS=${COMP_WORDBREAKS/:/} export FIGNORE=".o:~"