From 2c0d808b8b10e7d94b1747968544b4d5b6f8d045 Mon Sep 17 00:00:00 2001 From: snailed Date: Tue, 16 Aug 2022 09:13:43 +0000 Subject: [PATCH] Texclear fix for directories with spaces Add double quotes to prevent splitting directory names with spaces --- .local/bin/texclear | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/texclear b/.local/bin/texclear index f38f7bef..4cdb02e2 100755 --- a/.local/bin/texclear +++ b/.local/bin/texclear @@ -9,7 +9,7 @@ case "$1" in dir=$(dirname "$file") base="${file%.*}" 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)" + rm -rdf "$dir/_minted-$(basename -- "$base")" ;; *) printf "Give .tex file as argument.\\n" ;; esac