howtos:watch_filesystem_activity_with_inotify
Tools needed:
sudo apt-get install inotify-tools
Example script:
inotifywait -mrq -e create -e modify -e delete -e attrib -e move ~/Maildir | while read file do (notify-send "File updated in Maildir:" "$file"&) done
The script will watch the Maildir directory for file changes and send a notification to the desktop.
To get all events just omit the event list:
inotifywait -r -m /media/usbdisk/
howtos/watch_filesystem_activity_with_inotify.txt · Last modified: d/m/Y H:i by 127.0.0.1