Rev 10090 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{Sys.putenv}\title{Set Environment Variables}\usage{Sys.putenv(\dots)}\alias{Sys.putenv}\arguments{\item{\dots}{arguments in \code{name=value} form, with \code{value}coercible to a character string.}}\description{\code{putenv} sets environment variables (for other processes calledfrom within \R or future calls to \code{\link{Sys.getenv}} from this\R process).}\value{A logical vector of the same length as \code{x}, with elements beingtrue if setting the corresponding variable succeeded.}\details{Non-standard \R names must be quoted: see the Examples section.}\note{Not all systems need support \code{Sys.putenv}.}\seealso{\code{\link{Sys.getenv}},\code{\link{setwd}} for the working directory.}\examples{print(Sys.putenv("R_TEST"="testit", ABC=123))Sys.getenv("R_TEST")}\keyword{environment}\keyword{utilities}