Configure bash
This commit is contained in:
parent
6494664a60
commit
47c92124e5
8 changed files with 628 additions and 0 deletions
10
.bash_profile
Normal file
10
.bash_profile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue