2021-02-20 22:59:54 +00:00
|
|
|
#!/bin/bash
|
2022-08-23 14:10:57 +00:00
|
|
|
if [ -r /usr/local/etc/bash_profile ]
|
2022-08-18 16:04:19 +00:00
|
|
|
then
|
2022-08-23 14:10:57 +00:00
|
|
|
. /usr/local/etc/bash_profile
|
|
|
|
elif [ -r /etc/bash_profile ]
|
|
|
|
then
|
|
|
|
. /etc/bash_profile
|
2021-02-20 22:59:54 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
export BASH_ENV="$HOME/.bashrc"
|
|
|
|
|
2022-08-23 12:13:40 +00:00
|
|
|
export _acp_ignore_shrc=1
|
2022-08-19 14:52:07 +00:00
|
|
|
if [ -r "$HOME/.profile" ]
|
2021-02-20 22:59:54 +00:00
|
|
|
then
|
2022-08-19 14:52:07 +00:00
|
|
|
. "$HOME/.profile"
|
2019-10-03 10:50:19 +00:00
|
|
|
fi
|
2022-08-23 12:13:40 +00:00
|
|
|
unset _acp_ignore_shrc
|
|
|
|
|
|
|
|
if [ -r "$HOME/.bashrc" ]
|
|
|
|
then
|
|
|
|
. "$HOME/.bashrc"
|
|
|
|
fi
|