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 April 18, 2024, 11:06 p.m.