Created
August 9, 2014 18:52
-
-
Save tylergaw/daf512585659228d2bd0 to your computer and use it in GitHub Desktop.
Common places to make PATH additions
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
| # A list of potential files where users or scripts/apps/whatevs might add to the PATH | |
| ~/.bash_profile | |
| ~/.bashrc | |
| ~/.profile | |
| ~/.bash_custom |
Author
Author
Also, in my bash script I'm planning to source each of these in order until a program I'm looking for is found. In this case I'm trying to determine if and where node is installed.
Author
Putting this here because it's very helpful http://shreevatsa.wordpress.com/2008/03/30/zshbash-startup-files-loading-order-bashrc-zshrc-etc/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are there other common or not-so-common files where PATH might be modified?