better profile, local path should override system
This commit is contained in:
parent
ee0873e279
commit
b924e14f58
2 changed files with 2 additions and 2 deletions
|
|
@ -1,3 +1,3 @@
|
|||
if [ -f ~/.bashrc ]; then
|
||||
if [ -L ~/.bashrc ] || [ -f ~/.bashrc ]; then
|
||||
source ~/.bashrc;
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ alias h=history
|
|||
alias kp="ps auxwww"
|
||||
|
||||
# general path munging
|
||||
PATH=${PATH}:~/bin
|
||||
PATH=~/local/bin:${PATH}
|
||||
PATH=${PATH}:/usr/local/bin
|
||||
|
||||
if [ -f /opt/local/etc/bash_completion.d/git ]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue