mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +00:00
11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
# Load .env file into shell session for environment variables
|
|
|
|
function envup() {
|
|
if [ -f .env ]; then
|
|
export $(sed '/^ *#/ d' .env)
|
|
else
|
|
echo 'No .env file found' 1>&2
|
|
return 1
|
|
fi
|
|
}
|