R/runSH.R

Defines functions runSH

Documented in runSH

#' runSH
#' run the bash command line
#' @param sh character value representing the bash command line
#'
#' @return NULL
#' @export
#'
#' @examples
runSH = function( sh )
{
  cat(sh,'\n\n')
  system(sh)
}
zhushijia/STAR2bSMRT documentation built on Dec. 18, 2019, 7:37 a.m.