1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/devutils.R
\name{R.exec}
\alias{R.exec}
\alias{R.CMD}
\alias{R.SHLIB}
\title{Executing R Commands}
\usage{
R.exec(..., lib.loc = NULL)
R.CMD(cmd, ...)
R.SHLIB(libname, ...)
}
\arguments{
\item{...}{extra arguments that are concatenated and appended to
the command.}
\item{lib.loc}{logical that indicates if the current library locations
should be used.
If a character vector, then it is used as the library path specification.}
\item{cmd}{command to run, e.g. \sQuote{check} or \sQuote{INSTALL}.}
\item{libname}{name of the output compiled library}
}
\value{
Returns the value of executing the R command via \link{system}.
}
\description{
Functions to execute R commands.
}
\section{Functions}{
\itemize{
\item \code{R.exec()}: executes a single R command via \code{\link{system2}}.
\item \code{R.CMD()}: executes R CMD commands.
\item \code{R.SHLIB()}: executes R CMD SHLIB commands.
}}
|