Skip to content

Instantly share code, notes, and snippets.

@mihow
Last active June 14, 2024 02:15
Show Gist options
  • Save mihow/9c7f559807069a03e302605691f85572 to your computer and use it in GitHub Desktop.
Save mihow/9c7f559807069a03e302605691f85572 to your computer and use it in GitHub Desktop.
Load environment variables from dotenv / .env file in Bash
if [ ! -f .env ]
then
export $(cat .env | xargs)
fi
@alshdavid
Copy link

alshdavid commented Jun 14, 2024

I made a tool for this that works in PowerShell, Bash and Zsh. It's a single 0-dependency binary - xenv

# bash
eval $(xenv .env)
echo $FOO
# powershell
xenv .env | Invoke-Expression
echo "$env:FOO"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment