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