R/moveLatexFiles.R

moveLatexFiles <- function(tmpExtensions = c("aux", "bbl", "bcf", "blg", "lof",
                               "log", "lot", "run.xml", "toc")) {
  
  filesInDir <- 
    unlist(str_split(system("ls", intern=TRUE), pattern = "[[:space:]]+"))
  
  sapply(filesInDir, function(file) {
    extension <- str_split(file, pattern="[.]", n=2)[[1]][2]
    if (extension %in% tmpExtensions) {
      cat("Moving", file, "to ./tmp/ ...\n")
      system(str_c("mv ", file, " ./tmp/", file))
    }
    invisible(file)
  })
  
  invisible()
}

Try the ucbthesis package in your browser

Any scripts or data that you put into this service are public.

ucbthesis documentation built on May 2, 2019, 3:33 p.m.