Last active
September 11, 2020 04:46
-
-
Save Fitzy1293/b370d63a5c919d1c990fca42f3c8a717 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while : | |
do | |
if [ $1 == '-bib' ] | |
then | |
lualatex -interaction nonstopmode $2 > /dev/null | |
bibtex $2 | |
lualatex -interaction nonstopmode $2 > /dev/null | |
else | |
lualatex -interaction nonstopmode $1 > /dev/null | |
fi | |
rm *.out | |
rm *.aux | |
rm *.dvi | |
rm *.log | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment