8 lines
156 B
Bash
8 lines
156 B
Bash
if [ -f "${ENV}" ]; then
|
|
source "${ENV}"
|
|
elif [ -f "~/.env" ]; then
|
|
source "~/.env"
|
|
elif [ -f "~/.shrc" ]; then
|
|
source "~/.shrc"
|
|
fi
|