dotfiles/bin/watchbatch
2024-06-08 19:24:31 +02:00

7 lines
171 B
Bash
Executable file

#!/usr/bin/env sh
todo=$(cat)
inotifywait --recursive --monitor -e create -e attrib -e modify -e move -e delete -- "$@" | \
while read -r _unused; do
eval "$todo"
done