diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-07-30 01:22:03 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-07-30 01:22:03 -0400 |
| commit | 0fe62521c1238270a0cf2b1c7cd3a78415433916 (patch) | |
| tree | 4c4aecb654343cd99c52b7795fc67d178b83c531 /.scripts | |
| parent | ca3742ad28bff4dc20f1f937c13a708bcfa5691e (diff) | |
| download | eibhear-0fe62521c1238270a0cf2b1c7cd3a78415433916.tar.gz eibhear-0fe62521c1238270a0cf2b1c7cd3a78415433916.tar.zst eibhear-0fe62521c1238270a0cf2b1c7cd3a78415433916.zip | |
texclear greatly improved to prevent bad deletions
Diffstat (limited to '.scripts')
| -rwxr-xr-x | .scripts/texclear | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.scripts/texclear b/.scripts/texclear index 9951e27..4f53fc6 100755 --- a/.scripts/texclear +++ b/.scripts/texclear @@ -3,4 +3,10 @@ # Clears the build files of a LaTeX/XeLaTeX build. # I have vim run this file whenever I exit a .tex file. -find . -maxdepth 1 -regextype gnu-awk -regex "^.*\.(4tc|xref|tmp|pyc|pyo|fls|vrb|fdb_latexmk|bak|swp|aux|log|synctex\(busy\)|lof|nav|out|snm|toc|bcf|run\.xml|synctex\.gz|blg|bbl)" -delete +[[ "$1" == *.tex ]] || exit + +file=$(readlink -f "$1") +dir=$(dirname "$file") +base="${file%.*}" + +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|nav|out|snm|toc|bcf|run\.xml|synctex\.gz|blg|bbl)" -delete |
