#!/usr/bin/env bash EXCLUSION="~$|swp$|swo$" while inotifywait --exclude $EXCLUSION -r -e modify . do $@ done