Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gilvaju/33c13dedd8a79841a454695e909be608 to your computer and use it in GitHub Desktop.
Save gilvaju/33c13dedd8a79841a454695e909be608 to your computer and use it in GitHub Desktop.
Set and unset environment variables from an .env file
# set environment vars from an .env file
export $(grep -v '^#' .myenvfile | xargs)
# unset environment vars from an .env file
unset $(grep -v '^#' .myenvfile | awk 'BEGIN { FS = "=" } ; { print $1 }')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment