u.sys {sfsmisc} | R Documentation |
Convenient call to the underlying operating system. The main purpose has been to provide a function with identical UI both in S-PLUS and R. MM thinks you shouldn't use this anymore, usually.
u.sys(..., intern = TRUE)
... |
any number of strings – which will be
|
intern |
logical – note that the default is reversed from
the one in |
Martin Maechler
system
, really!
u.sys # shows how simply the function is defined : ## Not run: function (..., intern = TRUE) system(paste(..., sep = ""), intern = intern) ## End(Not run)