Skip to content

Instantly share code, notes, and snippets.

@ghukill
Created August 7, 2019 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ghukill/09ba86a6655155c4b8bfc4233949a778 to your computer and use it in GitHub Desktop.
Save ghukill/09ba86a6655155c4b8bfc4233949a778 to your computer and use it in GitHub Desktop.
Load envars from a key=value file
echo "loading env vars from: $1"
export $(grep -v '^#' $1 | xargs)
echo "all done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment