Last active
September 10, 2015 18:31
-
-
Save sedrubal/42c910a80e1d171d1aae to your computer and use it in GitHub Desktop.
cleanTex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
######################################### | |
# a small script to clean latex folders # | |
# author: sedrubal license: CC BY-SA # | |
######################################### | |
echo "[i] cleaning latex foo" | |
rm -f *.out | |
rm -f *.swp | |
rm -f *.tex.backup | |
rm -f *.synctex.gz | |
rm -f *.toc | |
rm -f *.snm | |
rm -f *.nav | |
rm -f *.aux *.log *.bbl *.blg *.brf *.cb *.ind *.idx *.ilg *.inx *.ps *.dvi *.toc *.out *.lot *~ *.lof *.ttt *.fff | |
rm -f *.maf *.mtc *.mtc0 | |
rm -r *.stc* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment