workstation/roles/home-cli/files/bash_profile

22 lines
337 B
Bash

#!/bin/bash
if [ -r /usr/local/etc/bash_profile ]
then
. /usr/local/etc/bash_profile
elif [ -r /etc/bash_profile ]
then
. /etc/bash_profile
fi
export BASH_ENV="$HOME/.bashrc"
export _acp_ignore_shrc=1
if [ -r "$HOME/.profile" ]
then
. "$HOME/.profile"
fi
unset _acp_ignore_shrc
if [ -r "$HOME/.bashrc" ]
then
. "$HOME/.bashrc"
fi