summaryrefslogtreecommitdiff
path: root/texclear
diff options
context:
space:
mode:
authorfilip <“filip.rabiega@gmail.com”>2026-02-16 12:37:29 +0100
committerfilip <“filip.rabiega@gmail.com”>2026-02-16 12:37:29 +0100
commitd763f6025fb04c4790b1a84854468191932597c9 (patch)
tree7c204523fc6f7b73d92db602740e9a3b7570437f /texclear
parentbf54007f62beb5bf889da69574c4fea74bdc59aa (diff)
downloadchadscripts-d763f6025fb04c4790b1a84854468191932597c9.tar.gz
chadscripts-d763f6025fb04c4790b1a84854468191932597c9.tar.bz2
chadscripts-d763f6025fb04c4790b1a84854468191932597c9.zip
add booksplit dwifi getbib rewrite volume
Diffstat (limited to 'texclear')
-rwxr-xr-xtexclear4
1 files changed, 2 insertions, 2 deletions
diff --git a/texclear b/texclear
index 73aa60e..20d1cdb 100755
--- a/texclear
+++ b/texclear
@@ -1,7 +1,7 @@
#!/bin/sh
# Clears the build files of a LaTeX/XeLaTeX build.
-# I have nvim run this file whenever I exit a .tex file.
+# I have nvim run this script whenever I exit a .tex file.
case "$1" in
*.tex)
@@ -11,5 +11,5 @@ case "$1" in
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
rm -rdf "$dir/_minted-$(basename -- $base)"
;;
-*) printf "Give .tex file as argument.\\n" ;;
+*) printf "Give a .tex file as argument.\\n" ;;
esac