In .bash_profile I have listed many env variables as follows:
export JAVA_HOME=...
export PYTHON=...
...
System.getenv() returns a list of env variables (e.g., SHELL, TMP_DIR) but not those listed in .bash_profile. Where these are coming from and how to get the ones in .bash_profile?
Thanks!