9 lines
132 B
Bash
9 lines
132 B
Bash
#!/bin/bash
|
|
|
|
file='cv.tex'
|
|
inotifywait --event modify "$file" | while read line
|
|
do
|
|
echo "File notify"
|
|
pflatex "$file"
|
|
done
|
|
|