System Environment Variables
Sys.getenv_value(name, raw = FALSE)
the value of the environment variable as a character string or
NA
is the variable is not defined at all.
variable name as a character string.
logical that indicates if one should return the raw value or
the convertion of any false value to FALSE
.
# undefined returns FALSE
Sys.getenv_value('TOTO')
# raw undefined returns NA
Sys.getenv_value('TOTO', raw = TRUE)
Sys.setenv(TOTO='bla')
Sys.getenv_value('TOTO')
# anything false-like returns FALSE
Sys.setenv(TOTO='false'); Sys.getenv_value('TOTO')
Sys.setenv(TOTO='0'); Sys.getenv_value('TOTO')
# cleanup
Sys.unsetenv('TOTO')
Run the code above in your browser using DataLab