7 lines
154 B
Bash
7 lines
154 B
Bash
|
# echo $USER .bash_profile
|
||
|
export PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin
|
||
|
source $BASH_SHELL_LOAD
|
||
|
if [ -f ~/.bashrc ]; then
|
||
|
. ~/.bashrc
|
||
|
fi
|