Extract command-line arguments
Provides access to a copy of the command-line arguments supplied when
this R session was invoked. This function is backward compatible with
commandArgs
() of the base package, but adds more
features.
commandArgs(trailingOnly=FALSE, asValues=FALSE, defaults=NULL, always=NULL, adhoc=FALSE, unique=FALSE, excludeReserved=FALSE, excludeEnvVars=FALSE, os=NULL, .args=NULL, ...)
trailingOnly |
If |
asValues |
If |
defaults |
A |
always |
A |
adhoc |
(ignored if |
unique |
If |
excludeReserved |
If |
excludeEnvVars |
If |
os |
A |
args |
A named |
.args |
|
... |
Passed to |
The first returned element is the name of the executable by which
R was invoked. As far as I am aware, the exact form of this element
is platform dependent. It may be the fully qualified name, or simply
the last component (or basename) of the application.
The returned attribute isReserved
is a logical
vector
specifying if the corresponding command-line argument is a reserved
R argument or not.
This function should be fully backward compatible with the same function in the base package, except when littler is used (see below).
The littler package provides the r
binary, which parses
user command-line options and assigns them to character vector
argv
in the global environment.
The commandArgs()
of this package recognizes argv
arguments as well.
When asValues
is TRUE
, the command-line arguments are
returned as a named list
. By default, the values of these
arguments are character
strings.
However, any command-line argument that share name with one of
the 'always' or 'default' arguments, then its value is coerced to
the corresponding data type (via as
).
This provides a mechanism for specifying data types other than
character
strings.
Furthermore, when asValues
and adhoc
are TRUE
, any
remaining character string command-line arguments are coerced to more
specific data types (via type.convert
), if possible.
Henrik Bengtsson
For a more user friendly solution, see cmdArgs
().
Internally commandArgs
() is used.
###################################################################### # Non-parsed command-line arguments ###################################################################### # Display how this instance of R was invoked. cmd <- paste(commandArgs(), collapse=" ") cat("How R was invoked:\n"); cat(cmd, "\n") # Get all arguments args <- commandArgs() print(args) # Get only "private" arguments and not the name of the R executable. args <- commandArgs(excludeReserved=TRUE)[-1] print(args) # Assert backward compatibility args0 <- base::commandArgs() args <- commandArgs() stopifnot(all.equal(args, args0, check.attributes=FALSE)) ###################################################################### # Parsed command-line arguments ###################################################################### # Get all arguments as a named list, e.g. if R is started as: # # R DATAPATH=../data --args --root="do da" --foo bar --details --a=2 # # then 'args' below will equal # # list(R=NA, DATAPATH="../data" args=TRUE, root="do da", # foo="bar", details=TRUE, a="2") args <- commandArgs(asValue=TRUE) str(args) # Turn arguments into R variables args <- commandArgs(asValue=TRUE, excludeReserved=TRUE)[-1] keys <- attachLocally(args) cat("Command-line arguments attached to global environment:\n"); print(keys); str(mget(keys, envir=globalenv()))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.