Configure bash

This commit is contained in:
Alexander Hess 2022-08-08 23:08:17 +02:00
commit 47c92124e5
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
8 changed files with 628 additions and 0 deletions

10
.bash_profile Normal file
View file

@ -0,0 +1,10 @@
# Executed by bash when a login shell starts
# Mimic bash's default behavior explicitly
if [ -f "$HOME/.bash_login" ]; then
source "$HOME/.bash_login"
elif [ -f "$HOME/.profile" ]; then
source "$HOME/.profile"
else
source "$HOME/.bashrc"
fi