Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > a6fc57324115759352214cd585446dfb > files > 3

bash-completion-20060301-21mdv2008.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