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