Esto es lo que aprendí hasta ahora:
# 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
¿Qué sucede si tengo varios scripts en 'brew --prefix'/etc/bash_completion.d/
? ¿Cómo puedo habilitarlos a todos?
O, ¿hay una carpeta en OS X equivalente a /etc/bash_completion.d/
en linux?