7 lines
108 B
Bash
7 lines
108 B
Bash
if [ -n "$PS1" ]
|
|
then
|
|
source ~/.bash_profile;
|
|
else
|
|
[ -r ~/.path ] && [ -f ~/.path ] && source ~/.path;
|
|
fi
|