R/sys.s

Defines functions sys

Documented in sys

## Improvements by Sebastian Weber <Sebastian.Weber@aventis.com> 26Aug03

sys <- function(command, text=NULL, output=TRUE) {
  cmd <- if(length(text)) paste(command, text) else command
  system(cmd, intern=output)
}
harrelfe/Hmisc documentation built on May 19, 2024, 4:13 a.m.