Skip to content

Instantly share code, notes, and snippets.

@catwhocode
Created October 16, 2023 23:55
Show Gist options
  • Save catwhocode/591bcf07d9bea93e15e69d03f192170d to your computer and use it in GitHub Desktop.
Save catwhocode/591bcf07d9bea93e15e69d03f192170d to your computer and use it in GitHub Desktop.
Export and remove environment variable from .env
export $(grep -v '^#' .env | xargs)
unset $(grep -v '^#' .env | sed -E 's/(.*)=.*/\1/' | xargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment