Sys.getenv {base} | R Documentation |
Sys.getenv
obtains the values of the environment variables named by
x
.
Sys.getenv(x)
x |
a character vector, or missing |
A vector of the same length as x
, with the variable names as
its names
attribute. Each element holds the value of the
environment variable named by the corresponding component of x
(or ""
if no environment variable with that name was found).
On most platforms Sys.getenv()
will return a named vector giving
the values of all the environment variables.
Sys.putenv
,
getwd
for the working directory.
Sys.getenv(c("R_HOME", "R_PAPERSIZE", "R_PRINTCMD", "HOST"))