Ajout : watchbatch

This commit is contained in:
Ahurac 2024-06-08 19:24:31 +02:00
parent 5156fa5201
commit edf168c7dc

7
bin/watchbatch Executable file
View file

@ -0,0 +1,7 @@
#!/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