Rev 50567 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/Sys.getenv.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2008 R Core Development Team% Distributed under GPL 2 or later\name{Sys.getenv}\title{Get Environment Variables}\usage{Sys.getenv(x = NULL, unset = "")}\alias{Sys.getenv}\arguments{\item{x}{a character vector, or \code{NULL}.}\item{unset}{a character string.}}\description{\code{Sys.getenv} obtains the values of the environment variables.}\details{Both arguments will be coerced to character if necessary.Setting \code{unset = NA} will enable unset variables and those set tothe value \code{""} to be distinguished, \emph{if the OS does}.}\value{A vector of the same length as \code{x}, with the variable names asits \code{names} attribute. Each element holds the value of theenvironment variable named by the corresponding component of \code{x}(or the value of \code{unset} if no environment variable with thatname was found).On most platforms \code{Sys.getenv()} will return a named vectorgiving the values of all the environment variables, sorted in thecurrent locale. It may be confused by names containing \code{=} whichsome platforms allow but POSIX does not. (Windows is such a platform:there names including \code{=} are truncated just before the first\code{=}.)}\seealso{\code{\link{Sys.setenv}},\code{\link{Sys.getlocale}} for the locale in use,\code{\link{getwd}} for the working directory.The help for \sQuote{\link{environment variables}} lists many of theenvironment variables used by \R.}\examples{## whether HOST is set will be shell-dependent e.g. Solaris' csh does not.Sys.getenv(c("R_HOME", "R_PAPERSIZE", "R_PRINTCMD", "HOST"))names(s <- Sys.getenv()) # all settings (the values could be very long)## Language and Locale settings -- but rather use Sys.getlocale()s[grep("^L(C|ANG)", names(s))]}\keyword{environment}\keyword{utilities}