4 lines
135 B
Bash
4 lines
135 B
Bash
inotifywait -m -r -e create,delete "./public/photos/Fabio/" |
|
|
while read path action file; do
|
|
echo "Evento: $action su $file"
|
|
done
|