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