Dotfiles for different machines on different branches.
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
633 B

  1. #!/usr/bin/env 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. # by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
  5. case "$1" in
  6. *.tex)
  7. file=$(readlink -f "$1")
  8. dir=$(dirname "$file")
  9. base="${file%.*}"
  10. if [ -f "$dir/indent.log" ]; then rm "$dir/indent.log"; fi
  11. 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 ;;
  12. *) printf "Give .tex file as argument.\\n" ;;
  13. esac