Skip to content

Instantly share code, notes, and snippets.

@dftaiwo
Created November 23, 2019 04:32
Show Gist options
  • Save dftaiwo/26c67a832916cff98a235651f29c7493 to your computer and use it in GitHub Desktop.
Save dftaiwo/26c67a832916cff98a235651f29c7493 to your computer and use it in GitHub Desktop.
Load Environment Variables from a .env file into a bash script or terminal
if [ -f .env ]
then
export $(cat .env | sed 's/#.*//g' | xargs)
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment