.bashrc

changeset 94
51ca19919894
child 97
dadc95ee5fe6
equal deleted inserted replaced
93:f8612a811de0 94:51ca19919894
1 # .bashrc: executed for non-login shells
2 # probably sourced by .bash_profile though
3
4 if [ -f ~/.bashrc.dist ]; then
5 source ~/.bashrc.dist
6 fi
7
8
9 if [ -d ~/bin ]; then
10 export PATH="$HOME/bin:$PATH"
11 fi
12
13 if [ -d ~/.plenv ]; then
14 export PATH="$HOME/.plenv/bin:$PATH"
15 eval "$(plenv init -)"
16 fi
17
18 if [ -d ~/.rbenv ]; then
19 export PATH="$HOME/.rbenv/bin:$PATH"
20 eval "$(rbenv init -)"
21 fi
22
23
24 if [ -f ~/.bashrc.local ]; then
25 source ~/.bashrc.local
26 fi
27

mercurial