Waits for changes to one or more files.
while inotifywait {{path/to/file}}; do {{command}}; done
while inotifywait --quiet {{path/to/file}}; do {{command}}; done
while inotifywait --recursive {{path/to/directory}}; do {{command}}; done
while inotifywait --recursive {{path/to/directory}} --exlude '{{regex}}'; do {{command}}; done
while inotifywait --timeout {{30}} {{path/to/file}}; do {{command}}; done
while inotifywait --event {{modify}} {{path/to/file}}; do {{command}}; done