## Source POSIX login session startup script
if [ -r "$HOME/.profile" ]
then
. "$HOME/.profile"
fi
## For interactive shells, source `.bashrc`
# This happens with login shells.
case $- in
*i*)
# Source Bash interactive shell startup scripts.
if [ -r "$HOME/.bashrc" ]
then
. "$HOME/.bashrc"
fi
;;
esac