5 lines
116 B
Bash
Executable file
5 lines
116 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
while inotifywait -e modify .; do
|
|
xelatex -interaction=nonstopmode -halt-on-error latex
|
|
done
|