Can someone explain why inotifywait
still reports about opened files, when I have excluded open?
mkdir /tmp/a
inotifywait --exclude acess,attrib,close_write,close_nowrite,close,open,moved_to,moved_from,move,delete,delete_self,unmount -r -m /tmp/a/
touch /tmp/a/test
/tmp/a/ OPEN test
/tmp/a/ CLOSE_NOWRITE,CLOSE test
All I am interested in is if new files are made or current files are modified.
I use CentOS 7, if that changes anything.