bash script di autocompletamento in OS X

2

Ecco cosa ho imparato finora:

# settings on mac
if [[ $(uname) == "Darwin" ]]; then
    # enable bash completion
    if [ -f 'brew --prefix'/etc/bash_completion ]; then
            . 'brew --prefix'/etc/bash_completion
    fi
    # enable git completion
    if [ -f 'brew --prefix'/etc/bash_completion.d/git-completion.bash ]; then
    . 'brew --prefix'/etc/bash_completion.d/git-completion.bash
    fi
fi

Che cosa succede se ho più script in 'brew --prefix'/etc/bash_completion.d/ ? Come posso abilitarli tutti?

Oppure, esiste una cartella in OS X equivalente a /etc/bash_completion.d/ in linux?

    
posta qed 15.08.2014 - 14:30
fonte

0 risposte

Leggi altre domande sui tag