Bash auto-completion is a wonderful thing. It'll even complete your make targets
for you .. so you can type make
and then <tab><tab>
to get a list, type the first
few letters and <tab>
again. 💥
Run this:
$ brew install bash-completion
Then add these lines to your ~/.bash_profile
:
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
# yum install bash-completion-extras
Just google it. 😄