rcmd_process
From callr v3.3.1
by Gabor Csardi
External R CMD
Process
An R CMD *
command that runs in the background. This is an R6 class
that extends the process class.
Details
rcmd_process$new
creates a new instance. Its options
argument is
best created by the rcmd_process_options()
function.
Usage
rp <- rcmd_process$new(options)
Arguments
options
A list of options created viarcmd_process_options()
.
Examples
# NOT RUN {
options <- rcmd_process_options(cmd = "config", cmdargs = "CC")
rp <- rcmd_process$new(options)
rp$wait()
rp$read_output_lines()
# }
Community examples
Looks like there are no examples yet.