Reload Environmental Variables Without Logging Out - Ubuntu
This doesn’t actually work: source /etc/environment
This did the trick though:
for line in $( cat /etc/environment ) ; do export $line ; done
This doesn’t actually work: source /etc/environment
This did the trick though:
for line in $( cat /etc/environment ) ; do export $line ; done