Guest User

Untitled

a guest
Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. function loadenv {
  2. echo "Loading contents of .env file as environment variables."
  3. for i in $(cat .env); do
  4. export $i
  5. echo "exported $i"
  6. done
  7. }
Add Comment
Please, Sign In to add comment