diff options
| author | snailed <luca@snaile.de> | 2022-08-16 12:25:21 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-16 12:25:21 +0000 |
| commit | e864d6f9f2440735e046bfd7d85bab3f4740dac5 (patch) | |
| tree | b9f9e2e2ea2231c30a40a393d55170435240d9a9 /.local/bin/texclear | |
| parent | 9ff4910d4a422444a2d03886c408fd006406f411 (diff) | |
| download | eibhear-e864d6f9f2440735e046bfd7d85bab3f4740dac5.tar.gz eibhear-e864d6f9f2440735e046bfd7d85bab3f4740dac5.tar.zst eibhear-e864d6f9f2440735e046bfd7d85bab3f4740dac5.zip | |
Texclear fix for directories with spaces (#1169)
Add double quotes to prevent splitting directory names with spaces
Diffstat (limited to '.local/bin/texclear')
| -rwxr-xr-x | .local/bin/texclear | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
