Can all shells read all environmental variables set by other shells?
For example, if I'm in csh, I can use `setenv VARNAME varVALUE` while I can use export in Bash.
Given that the environmental variables are created, can BASH read env vars from csh and vice versa?
|