R/cd.R

Defines functions cd

Documented in cd

#' Change Directory
#'
#' Function to change directory to the directory stored in the clipboard
#'
#'
#' @examples
#' cd()
#'
#' @export

cd <- function() {
  setwd(readClipboard())
}
mathesong/granviller documentation built on April 20, 2020, 7:28 p.m.