In my R session, I'm setting some environment variables using
Sys.setenv(BLAH="blah")
When I switch to the terminal (Ctrl-Z) and then try to access the environment variable, I see that it is not set.
echo $BLAH
The question is, where is the environment variable that I set from R, and if I want another process to see it, how can I get access to it?