Sys.getenv_value: System Environment Variables

Description Usage Arguments Value Examples

View source: R/packages.R

Description

System Environment Variables

Usage

1

Arguments

name

variable name as a character string.

raw

logical that indicates if one should return the raw value or the convertion of any false value to FALSE.

Value

the value of the environment variable as a character string or NA is the variable is not defined at all.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# 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')

pkgmaker documentation built on May 2, 2019, 4:42 p.m.