Skip to content

Instantly share code, notes, and snippets.

@pwen
Last active March 10, 2020 15:56
Show Gist options
  • Save pwen/ab7c3ea428a56c3833d17d76aaa4a115 to your computer and use it in GitHub Desktop.
Save pwen/ab7c3ea428a56c3833d17d76aaa4a115 to your computer and use it in GitHub Desktop.
if [ ! -f .env ]
then
export $(cat .env | xargs)
fi
#######
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