summaryrefslogtreecommitdiff
path: root/texclear
diff options
context:
space:
mode:
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