adding files

This commit is contained in:
2020-01-06 05:13:02 -06:00
parent 08b41c3468
commit 56095a79f0
3 changed files with 100 additions and 0 deletions

12
MtAv1/Joe/.renderer.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
cd "$(dirname "$0")"
while inotifywait -e close_write *.tex; do
/usr/local/texlive/2018/bin/x86_64-linux/pdflatex -file-line-error -interaction nonstopmode Main.tex
mv Main.pdf Joe.pdf
mv Main.log .Main.log
rm Main.out
rm Main.aux
printf "\nJoe updated\n"
done