
# START bash completion -- do not remove this line
bash=${BASH_VERSION%.*}; bmajor=${bash%.*}; bminor=${bash#*.}
if [ "x$bash" != "x" ] && [ "$PS1" ] && [ -f /etc/bash_completion ] && [ $bmajor$bminor -gt 204 ] 
    then # interactive shell
        # Source completion code
        . /etc/bash_completion
fi
unset bash bmajor bminor
# END bash completion -- do not remove this line
