workstation/roles/home-cli/files/bash_profile

23 lines
337 B
Bash
Raw Normal View History

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"
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"
fi
unset _acp_ignore_shrc
if [ -r "$HOME/.bashrc" ]
then
. "$HOME/.bashrc"
fi