1
0
dotfiles-chip/.bashrc
2022-04-23 07:16:48 +00:00

8 lines
156 B
Bash

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