1
0
Fork 0
dotfiles-chip/.bashrc

8 lines
156 B
Bash
Raw Normal View History

2022-04-23 07:16:48 +00:00
if [ -f "${ENV}" ]; then
source "${ENV}"
elif [ -f "~/.env" ]; then
source "~/.env"
elif [ -f "~/.shrc" ]; then
source "~/.shrc"
fi