8 lines
186 B
Bash
8 lines
186 B
Bash
# Executed by bash when a login shell starts
|
|
|
|
# Mimic bash's default behavior explicitly
|
|
if [ -f "$HOME/.profile" ]; then
|
|
source "$HOME/.profile"
|
|
else
|
|
source "$HOME/.bashrc"
|
|
fi
|