darkrc/bin/on_file_write

6 lines
103 B
Plaintext
Raw Normal View History

#!/bin/sh
while inotifywait --recursive --event CLOSE_WRITE . > /dev/null 2>&1
do $SHELL -c "$@"
done