From e864d6f9f2440735e046bfd7d85bab3f4740dac5 Mon Sep 17 00:00:00 2001 From: snailed Date: Tue, 16 Aug 2022 12:25:21 +0000 Subject: [PATCH] Texclear fix for directories with spaces (#1169) 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 f38f7be..4cdb02e 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