system_w_init {switchr} | R Documentation |
system_w_init
Description
Run a system command with an optional intialization script (e.g. a .bashrc sourced first).
Usage
system_w_init(
cmd,
dir,
init = character(),
args = NULL,
env = NULL,
...,
param = SwitchrParam()
)
Arguments
cmd |
The text of the command. Must be length 1. |
dir |
The directory that the command should be executed in. The working directory will be temporarily changed to this dir, but will be changed back upon exit of system_w_init. |
init |
(optional) a character value indicating the location of an initialization shell script. |
args |
character. Arguments to be passed to the command |
env |
character. Environmental variables to be set when running the command |
... |
additional parameters passed directly to |
param |
A SwitchrParam object. The shell initialization
script associated with this object is used when |
Value
Depends, see system
for details.
[Package switchr version 0.14.8 Index]