1
0
Fork 0
dotfiles-chip/.bashrc

8 lines
156 B
Bash

if [ -f "${ENV}" ]; then
source "${ENV}"
elif [ -f "~/.env" ]; then
source "~/.env"
elif [ -f "~/.shrc" ]; then
source "~/.shrc"
fi