R CMD ProcessAn R CMD * command that runs in the background. This is an R6 class
that extends the processx::process class.
processx::process -> rcmd_process
new()Start an R CMD process.
rcmd_process$new(options)
optionsA list of options created via
rcmd_process_options().
A new rcmd_process object.
finalize()Clean up the temporary files created for an R CMD process.
rcmd_process$finalize()
clone()The objects of this class are cloneable with this method.
rcmd_process$clone(deep = FALSE)
deepWhether to make a deep clone.
# NOT RUN {
options <- rcmd_process_options(cmd = "config", cmdargs = "CC")
rp <- rcmd_process$new(options)
rp$wait()
rp$read_output_lines()
# }
Run the code above in your browser using DataLab