R/cd.R

Defines functions cd

Documented in cd

#' A wrapper to Change Directory
#' 
#' @param path  A character string: tilde expansion will be done.
#' @export
cd <- function(path){
    setwd(path)
}
slackline/nmisc documentation built on May 30, 2019, 3:04 a.m.