Skip to content

Instantly share code, notes, and snippets.

@mihow
Last active April 8, 2026 20:53
Show Gist options
  • Select an option

  • Save mihow/9c7f559807069a03e302605691f85572 to your computer and use it in GitHub Desktop.

Select an option

Save mihow/9c7f559807069a03e302605691f85572 to your computer and use it in GitHub Desktop.
Load environment variables from dotenv / .env file in Bash
# The initial version
if [ ! -f .env ]
then
export $(cat .env | xargs)
fi
# My favorite from the comments. Thanks @richarddewit & others!
set -a && source .env && set +a
@lionelkouame
Copy link
Copy Markdown

Thank you so much for your solution .

@muthugit
Copy link
Copy Markdown

muthugit commented May 4, 2021

source .env

works for me

@abhidp
Copy link
Copy Markdown

abhidp commented May 28, 2021

source .env

works for me

wont work if you have # in your .env

@muthugit
Copy link
Copy Markdown

@abhidp sorry, i didn't check that case...

@Bioblaze
Copy link
Copy Markdown

Bioblaze commented Jun 6, 2021

# Local .env
if [ -f .env ]; then
    # Load Environment Variables
    export $(cat .env | grep -v '#' | sed 's/\r$//' | awk '/=/ {print $1}' )
fi

is what I use.. <.< it allows me to comment inside of the .env file :X and handles /r proper.. hope that helps everyone <3

@briefgaming
Copy link
Copy Markdown

Here is a modified version of this code that allows for variable expansion

if [ -f .env ]; then
  export $(echo $(cat .env | sed 's/#.*//g'| xargs) | envsubst)
fi

This worked for me. Thanks

@quilicicf
Copy link
Copy Markdown

Went for:

loadEnv() {
  local envFile="${1?Missing environment file}"
  local environmentAsArray variableDeclaration
  mapfile environmentAsArray < <(
    grep --invert-match '^#' "${envFile}" \
      | grep --invert-match '^\s*$'
  ) # Uses grep to remove commented and blank lines
  for variableDeclaration in "${environmentAsArray[@]}"; do
    export "${variableDeclaration//[$'\r\n']}" # The substitution removes the line breaks
  done
}

It does not glob or swallow quotes, tested with:

WITH_QUOTES=''

# Comment
WITNESS=whatever

WITH_GLOB=*.sh

In this folder (so the glob matches the shell file):

.
├── .env
└── loadEnvTest.sh

With command:

source ./loadEnvTest.sh; loadEnv .env; echo "$WITH_QUOTES $WITH_GLOB"

Outputs:

'' *.sh

@maxweber3
Copy link
Copy Markdown

darbe habercisi

@msmans
Copy link
Copy Markdown

msmans commented Jul 31, 2021

One I use (bash specific) which behaves correctly in presence of calling environment override:

. <(sed -n 's/^\([^#][^=]*\)=\(.*\)$/\1=${\1:-\2}/p' .env 2>/dev/null) || true

@shlomi-viz
Copy link
Copy Markdown

if [ ! -f .env ]
then
  export $(cat .env | xargs)
fi

I hate bash so much...... it took me 30 minutes to understand it should be if [ -f .env ] instead of if [ ! -f .env ] 😢

@chengxuncc
Copy link
Copy Markdown

chengxuncc commented Aug 26, 2021

[ ! -f .env ] || export $(sed 's/#.*//g' .env | xargs)

Update:
TEXT="abc#def" not work as expected, so just replace line begin with #.

[ ! -f .env ] || export $(grep -v '^#' .env | xargs)

@ShivKJ
Copy link
Copy Markdown

ShivKJ commented Aug 30, 2021

@chengxuncc

using export $(grep -v '^#' .env | xargs) could not export the following,

A=10
B=$A
C=${A}

now, echo $B produces $A while it should print 10

@chengxuncc
Copy link
Copy Markdown

@chengxuncc

using export $(grep -v '^#' .env | xargs) could not export the following,

A=10
B=$A
C=${A}

now, echo $B produces $A while it should print 10

@ShivKJ Of course, it will equal to export A=10 B=$A C=${A} and doesn't work like shell script. Another example is /etc/environment have same behavior and don't accept variable definition.

@kolypto
Copy link
Copy Markdown

kolypto commented Sep 12, 2021

If you're wondering how to load a .env file with direnv: direnv already supports that :)

dotenv "testing.env"

Docs: https://direnv.net/man/direnv-stdlib.1.html

@jhud
Copy link
Copy Markdown

jhud commented Sep 20, 2021

The Problem

The problem with .env files is that they're like bash, but not completely.
While in bash you'd sometimes put quotes around values:

name='value ! with > special & characters'

in .env files there are no special characters, and quotes are not supported: they're part of the value. As a result, such a string has to be escaped when imported into bash.

The Solution

This version withstands every special character in values:

set -a
source <(cat development.env | sed -e '/^#/d;/^\s*$/d' -e "s/'/'\\\''/g" -e "s/=\(.*\)/='\1'/g")
set +a

Explanation:

  • -a means that every bash variable would become an environment variable
  • /^#/d removes comments (strings that start with #)
  • /^\s*$/d removes empty strings, including whitespace
  • "s/'/'\\\''/g" replaces every single quote with '\'', which is a trick sequence in bash to produce a quote :)
  • "s/=\(.*\)/='\1'/g" converts every a=b into a='b'

As a result, you are able to use special characters :)

To debug this code, replace source with cat and you'll see what this command produces.

Thank you! I have some long and unusually formatted environment variables, and this was the only solution which didn't choke on them.

@jquick
Copy link
Copy Markdown

jquick commented Sep 21, 2021

~/bin/envs

set -a
source .env
set +a
exec $@

$> envs go run .

@lsotoj
Copy link
Copy Markdown

lsotoj commented Sep 21, 2021

export $(grep -v '^#' .env | xargs)

Thanks so much. I love it.

@aslamanver
Copy link
Copy Markdown

export $(grep -v '^#' .env | xargs)

Hats off man

@xmarkclx
Copy link
Copy Markdown

xmarkclx commented Oct 7, 2021

Doesn't work for me because of JWT in the .env with lots of newlines.
Had to manually vim copy paste the contents instead.

@nickbien
Copy link
Copy Markdown

this worked for me, from @rjchicago snippet
set -o allexport; source .env; set +o allexport

@geekwhocodes
Copy link
Copy Markdown

Here is a modified version of this code that allows for variable expansion

if [ -f .env ]; then
  export $(echo $(cat .env | sed 's/#.*//g'| xargs) | envsubst)
fi

worked like a charm. Thanks!

@NatoBoram
Copy link
Copy Markdown

FWIW If you need to just run a command with environment from an env file, this could help:

env $(cat .env|xargs) CMD

provided there are no other lines except env definitions in form of VAR=VALUE. Don't remember where I found it, but does the trick for me.

You can actually get away without xargs

env $(cat .env) <command>

@fzancan-SpazioCodice
Copy link
Copy Markdown

export $( grep -vE "^(#.*|\s*)$" .env )

@J5Dev
Copy link
Copy Markdown

J5Dev commented Nov 8, 2021

The cleanest solution I found for this was using allexport and source like this

set -o allexport
source .env set
+o allexport

This was by far the best solution here for me, removed all the complexity around certain chars, spaces comments etc. Just needed a tweak on formatting to prevent others being tripped up, should be:

set -o allexport
source .env
set +o allexport

@MrYutz
Copy link
Copy Markdown

MrYutz commented Nov 11, 2021

The above worked fine for me, but thought I'd share the solution I went with: https://stackoverflow.com/a/30969768/179329 set -o allexport; source .env; set +o allexport

I like this too.

@n1k0
Copy link
Copy Markdown

n1k0 commented Mar 1, 2022

oh-my-zsh users can also activate the dotenv plugin.

@BinitaBharati
Copy link
Copy Markdown

source .env

works for me

wont work if you have # in your .env

Thanks for this.

@xswirelab
Copy link
Copy Markdown

@devzom
Copy link
Copy Markdown

devzom commented Mar 16, 2022

Great work ! :)

  • I have .env with [VAR1=xyz, VAR2=233, NPM_TOKEN=123]

  • Seems that this example from @valmayaki :

if [ -f .env ]; then
  export $(echo $(cat .env | sed 's/#.*//g'| xargs) | envsubst)
fi
# always response as one liner with all the variables
  • I switched to use this without xargs:
export "$(grep -vE "^(#.*|\s*)$" .env)"
# as it's responding with single value ex: 
echo $NPM_TOKEN # just print the single variable

thanks to all for great cooperation <3

@michchan
Copy link
Copy Markdown

The above worked fine for me, but thought I'd share the solution I went with: https://stackoverflow.com/a/30969768/179329 set -o allexport; source .env; set +o allexport

This works!

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