Sophie

Sophie

distrib > Mandriva > current > x86_64 > by-pkgid > f19ddbe8e55d57979e88c5648af4c55d > files > 4

bash-completion-2.0-0.20100912.2mdv2010.1.noarch.rpm

#!/bin/sh
# system-wide activation
if [ "$PS1" ]  && [ -n "$BASH" ]; then
    # source system wide config file
	. /etc/sysconfig/bash-completion
    # source user config file if available,
    if [ -f $HOME/.bash_completion ]; then
        . $HOME/.bash_completion
    fi

    if [ -n "$ENABLE_BASH_COMPLETION" ]; then
        . /etc/bash_completion
    fi
fi