Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
547 B

4 years ago
  1. #!/bin/sh
  2. # Clears 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|pyg|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. rm -rdf "$dir/_minted-$(basename -- $base)"
  11. ;;
  12. *) printf "Give .tex file as argument.\\n" ;;
  13. esac