21 lines
331 B
Bash
21 lines
331 B
Bash
# ~/.profile: executed by Bourne-compatible login shells.
|
|
|
|
if [ -d /etc/profile.d ]; then
|
|
for i in /etc/profile.d/*.sh; do
|
|
if [ -r "$i" ]; then
|
|
. "$i"
|
|
fi
|
|
done
|
|
unset i
|
|
fi
|
|
|
|
if [ "$BASH" ]; then
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
fi
|
|
|
|
mesg n 2> /dev/null || true
|
|
|
|
export PATH="/root/.local/bin:$PATH"
|