system                 package:base                 R Documentation

_I_n_v_o_k_e _a _S_y_s_t_e_m _C_o_m_m_a_n_d

_D_e_s_c_r_i_p_t_i_o_n:

     'system' invokes the OS command specified by 'command'.

_U_s_a_g_e:

     system(command, intern = FALSE, ignore.stderr = FALSE)

_A_r_g_u_m_e_n_t_s:

 command: the system command to be invoked, as a string.

  intern: a logical, indicates whether to make the output of the
          command an R object.

ignore.stderr: a logical indicating whether error messages (written to
          'stderr') should be ignored.

_D_e_t_a_i_l_s:

     If 'intern' is 'TRUE' then 'popen' is used to invoke the command
     and the output collected, line by line, into an R 'character'
     vector which is returned as the value of 'system'.  Output lines
     of more than 8095 characters will be split.

     If 'intern' is 'FALSE' then the C function 'system' is used to
     invoke the command and the value returned by 'system' is the exit
     status of this function.

     'unix' is a _deprecated_ alternative, available for backwards
     compatibility.

_V_a_l_u_e:

     If 'intern=TRUE', a character vector giving the output of the
     command, one line per character string. If the command could not
     be run or gives an error a R error is generated.

     If 'intern=FALSE', the return value is an error code.

_S_e_e _A_l_s_o:

     '.Platform' for platform specific variables.

_E_x_a_m_p_l_e_s:

     # list all files in the current directory using the -F flag
     ## Not run: system("ls -F")

     # t1 is a character vector, each one
     # representing a separate line of output from who
     t1 <- system("who", TRUE)

     system("ls fizzlipuzzli", TRUE, TRUE)# empty since file doesn't exist

