Skip to content

Instantly share code, notes, and snippets.

@Velrok
Created March 8, 2013 10:16
Show Gist options
  • Save Velrok/5115521 to your computer and use it in GitHub Desktop.
Save Velrok/5115521 to your computer and use it in GitHub Desktop.
Remove all the files that latex generates.
#!/bin/bash
for i in aux bbl blg fdb_latexmk fls out synctex.gz log toc lof lot
do
rm *.$i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment