7 lines
193 B
Bash
Executable file
7 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
find -name \*.aux -exec rm {} \;
|
|
pdflatex -interaction nonstopmode uq_report
|
|
bibtex uq_report
|
|
pdflatex -interaction nonstopmode uq_report
|
|
pdflatex -interaction nonstopmode uq_report
|