You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415161718 |
- #!/bin/bash
- # clean all generated files (except the pdf)
- # 2019-07-07
- # philipp.freimann@bbw.ch
-
- rm -f *.aux
- rm -f *.dvi
- rm -f *.idx
- rm -f *.log
- rm -f *.ps
- rm -f *.toc
- rm -f *.log
- rm -f *.ilg
- rm -f *.ind
- rm -f *.blg
- rm -f *.bbl
- rm -f *.out
- rm -f *~
|