R/sopen.R

#' @title Open
#'
#' @description Open Shell Command
#' @param string What you want to open from the shell
#' @keywords open
#' @export
#' @examples
#' sopen("~/Files/")
#' #' sopen("http://google.com/")

sopen <- function(string){
  system(paste("open", string))
  }
chrisvacc/R.Toolshed documentation built on May 28, 2019, 8:59 p.m.