workstation/roles/home-cli/files/bash_profile

13 lines
154 B
Bash
Raw Normal View History

2021-02-20 22:59:54 +00:00
#!/bin/bash
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
2022-09-08 09:31:44 +00:00
export BASH_ENV="$HOME/.bashrc"
2022-09-08 09:49:03 +00:00
if [ -r "$HOME/.bashrc" ]
then
. "$HOME/.bashrc"
fi