dotfiles/.bash_login

9 lines
186 B
Bash
Raw Normal View History

2022-08-08 23:08:17 +02:00
# 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