Accessing environment variables set in R session from shell

Viewed 3059

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?

1 Answers
Related