8 lines
195 B
Bash
Executable file
8 lines
195 B
Bash
Executable file
#!/bin/sh
|
|
|
|
find -name \*.aux -exec rm {} \;
|
|
rm BEAVRS.bbl
|
|
pdflatex -interaction nonstopmode BEAVRS
|
|
bibtex BEAVRS
|
|
pdflatex -interaction nonstopmode BEAVRS
|
|
pdflatex -interaction nonstopmode BEAVRS
|