Skip to content

Instantly share code, notes, and snippets.

@sedrubal
Last active September 10, 2015 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sedrubal/42c910a80e1d171d1aae to your computer and use it in GitHub Desktop.
Save sedrubal/42c910a80e1d171d1aae to your computer and use it in GitHub Desktop.
cleanTex
#/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