toyotacorolla |
git clone https://git.davidvoz.net/toyotacorolla.git
|
| 1 | #!/bin/sh |
| 2 | # $ xel [LaTeX file] |
| 3 | # compiles and removes garbage files you might not want |
| 4 | |
| 5 | filename="${1%.tex}" |
| 6 | |
| 7 | xelatex "${filename}.tex" |
| 8 | rm -f "${filename}".log "${filename}".aux "${filename}".out "${filename}".toc |