I'm Trying to print all the files in some directory when they are changed.
**for example:**
I want to print all the files that changed under **Lupidon** directory
├───Bills
├───Mortgage
├───Zeus
│ ├───Cronus
│ └───Lupidon
I'm using the next bash command which I found at stack overflow:
inotifywait -qrm --event modify --format %f /Zeus/Lupidon
This is working for every file that I added to the Lupidon directory,
but when if Lupidon will be directory inside docker container which persist data from the host (by volume), When files changed from the host, the container show this files changed but nothing printed
Am I doing something wrong? there is other way to get this functionality by other tool?