Created
July 6, 2014 19:57
-
-
Save jkleckner/30c8037caf8d913bb4b3 to your computer and use it in GitHub Desktop.
Minimal initialization for brew and bash on a Mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Modify or create ~/.profile to contain: | |
PATH=/usr/local/bin:$PATH | |
source ~/.bashrc | |
Modify or create ~/.bashrc to contain: | |
if [ -f `brew --prefix`/share/bash-completion/bash_completion ]; then | |
source `brew --prefix`/share/bash-completion/bash_completion | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment