4 lines
194 B
Bash
Executable File
4 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
echo "deleting LaTeX generated files (except pdfs)"
|
|
rm *.aux *.bbl *.bcf *.blg *.fdb_latexmk *.fls *.idx *.ilg *.ind *.lof *.log *.lot *.lox *.out *.run.xml *.synctex.gz *.toc *.xdv
|