10 lines
127 B
Text
10 lines
127 B
Text
# Read /etc/profile
|
|
|
|
if [ -f /etc/profile ]; then
|
|
. /etc/profile
|
|
fi
|
|
|
|
PATH=$PATH:$HOME/bin
|
|
PS1="[\u@\h \W]$ "
|
|
|
|
export PATH PS1
|