-
Notifications
You must be signed in to change notification settings - Fork 7
/
cleanlatex.sh
executable file
·23 lines (23 loc) · 1.09 KB
/
cleanlatex.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
find . -type f -name "*.aux" -exec rm -f {} \;
find . -type f -name "*.bak" -exec rm -f {} \;
find . -type f -name "*.bbl" -exec rm -f {} \;
find . -type f -name "*.blg" -exec rm -f {} \;
find . -type f -name "*conflict*" -exec rm -f {} \;
find . -type f -name "*.hrf" -exec rm -f {} \;
find . -type f -name "*.idx" -exec rm -f {} \;
find . -type f -name "*.ilg" -exec rm -f {} \;
find . -type f -name "*.ind" -exec rm -f {} \;
find . -type f -name "*.log" -exec rm -f {} \;
find . -type f -name "*.maf" -exec rm -f {} \;
find . -type f -name "*.mtc" -exec rm -f {} \;
find . -type f -name "*.out" -exec rm -f {} \;
find . -type f -name "*.toc" -exec rm -f {} \;
find . -type f -name "*.dvi" -exec rm -f {} \;
find . -type f -name "*.nav" -exec rm -f {} \;
find . -type f -name "*.backup" -exec rm -f {} \;
find . -type f -name "*.synctex*" -exec rm -f {} \;
find . -type f -name "*.bcf" -exec rm -f {} \;
find . -type f -name "*.fls" -exec rm -f {} \;
find . -type f -name "*.pre" -exec rm -f {} \;
find . -type f -name "*.tdo" -exec rm -f {} \;
find . -type f -name "*.run.xml" -exec rm -f {} \;