Created
April 2, 2015 19:28
-
-
Save esjay/ddeabebf6ff9a0cb4d2e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Path configuration | |
paths=( | |
/usr/local/share/npm/bin | |
/usr/local/heroku/bin | |
"$HOME/.node/bin" | |
"$HOME/.rvm/bin" | |
/usr/local/sbin | |
/usr/local/bin | |
/usr/bin | |
/usr/sbin | |
/bin | |
/sbin | |
# other things, etc, etc... | |
) | |
OLD_IFS="$IFS" | |
export IFS=":" | |
PATH="${paths[*]}" | |
export IFS="$OLD_IFS" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment