-
-
Save ralphcrisostomo/4159040 to your computer and use it in GitHub Desktop.
PATH
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 | |
# -------------- | |
export LC_CTYPE="en_US.UTF-8" | |
PATH=/usr/bin:/bin:/usr/sbin:/sbin | |
export PATH | |
# add custom, local installations to PATH | |
PATH=/usr/local/bin:/usr/local/sbin:"$PATH" | |
# add MacPorts to PATH | |
PATH=/opt/local/bin:/opt/local/sbin:"$PATH" | |
# Add RVM to PATH for scripting | |
PATH=$PATH:$HOME/.rvm/bin:"$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment