Since today my terminal shows all kind of variables on startup.
This is my ~/.zshrc file:
I don't think something bad will come of it but I'm just wondering how this happened and how I can turn it back off.
Thankyou for your help!
CodePudding user response:
export
is called as a command, and shows all the exported vars.
You should make the
export
JAVA_HOME=...
A single line, so export
isn't called without args:
export JAVA_HOME= ...