portfolio/latex/v2/watch.sh

16 lines
178 B
Bash
Raw Normal View History

2022-08-02 20:09:45 +00:00
#!/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