Skip to content

Instantly share code, notes, and snippets.

@scudelletti
Created April 13, 2018 14:47
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 scudelletti/a4a2f05aaa74d587944b0055ca1b93f9 to your computer and use it in GitHub Desktop.
Save scudelletti/a4a2f05aaa74d587944b0055ca1b93f9 to your computer and use it in GitHub Desktop.
Export Env Variables stored on /etc/environment
# Loan Env Variables
while read line; do
export $(echo $line | sed 's/"//g')
done < /etc/environment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment