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