2020-02-08 18:43:37 -05:00
|
|
|
#!/bin/sh
|
2018-07-14 22:30:01 -04:00
|
|
|
|
|
|
|
# Clears the build files of a LaTeX/XeLaTeX build.
|
|
|
|
# I have vim run this file whenever I exit a .tex file.
|
|
|
|
|
2018-12-01 14:34:14 -05:00
|
|
|
case "$1" in
|
|
|
|
*.tex)
|
|
|
|
file=$(readlink -f "$1")
|
|
|
|
dir=$(dirname "$file")
|
|
|
|
base="${file%.*}"
|
2019-02-19 17:19:44 -05:00
|
|
|
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 ;;
|
2018-12-01 14:34:14 -05:00
|
|
|
*) printf "Give .tex file as argument.\\n" ;;
|
|
|
|
esac
|
2018-07-30 01:22:03 -04:00
|
|
|
|