Skip to content

Instantly share code, notes, and snippets.

@EvilFreelancer
Created January 28, 2018 12:10
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 EvilFreelancer/2362351487a29fcc9370d9d0aa0ea470 to your computer and use it in GitHub Desktop.
Save EvilFreelancer/2362351487a29fcc9370d9d0aa0ea470 to your computer and use it in GitHub Desktop.
A simple way to read a donenv file in BASH (with spaces support)
#!/bin/bash
grep -vE '^#|^$' ".env" | awk -F \= '{print $1"=\""$2"\""}' | \
while read env;
do
echo "$env";
export "$env";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment