diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-08-10 11:46:37 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-08-10 11:48:58 +0200 |
commit | 0e28ec0e3b2e62f226667223ed7491ddb5b5a047 (patch) | |
tree | c7721c11c7679ca67d988e9574b753c73f572055 /.bash_profile | |
parent | 7adb09c426e4fe013e27c8d4db84612e2c11f7f7 (diff) | |
download | dotfiles-0e28ec0e3b2e62f226667223ed7491ddb5b5a047.tar.gz dotfiles-0e28ec0e3b2e62f226667223ed7491ddb5b5a047.tar.bz2 dotfiles-0e28ec0e3b2e62f226667223ed7491ddb5b5a047.zip |
.bash_profile: Add `~/bin` to the `$PATH`
Just like before, the `$PATH` can still safely be extended by adding `~/.path`.
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile index 663e201..505d6d4 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,6 +1,9 @@ +# Add `~/bin` to the `$PATH` +export PATH="$HOME/bin:$PATH" + # Load the shell dotfiles, and then some: -# * ~/.path can be used to set or extend `$PATH`. -# * ~/.extra can be used for settings you don’t want to commit. +# * ~/.path can be used to extend `$PATH`. +# * ~/.extra can be used for other settings you don’t want to commit. for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do [ -r "$file" ] && source "$file" done |