portfolio/latex/v2/watch.sh

15 lines
178 B
Bash

#!/bin/sh
SOURCE=./cv.tex
compile() {
pdflatex -halt-on-error $SOURCE
}
compile
while :
do
inotifywait -e modify ./cv.tex
echo "file has changed"
compile
done