texclear 505 B

1234567891011121314
  1. #!/bin/sh
  2. # script to clear the build files of a LaTeX/XeLaTeX build
  3. # I have vim run this file whenever I exit a .tex file.
  4. case "$1" in
  5. *.tex)
  6. file=$(readlink -f "$1")
  7. dir=$(dirname "$file")
  8. base="${file%.*}"
  9. find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(4tc|xref|tmp|pyc|pyo|fls|vrb|fdb_latexmk|bak|swp|aux|log|synctex\\(busy\\)|lof|lot|maf|idx|mtc|mtc0|nav|out|snm|toc|bcf|run\\.xml|synctex\\.gz|blg|bbl)" -delete ;;
  10. *) printf "Give .tex file as argument.\\n" ;;
  11. esac