Untitled
inotifywait

$ sudo aptitude install inotify-tools
#!/bin/bash

ROOTDIR=/path/to/dir

inotifywait -qrm --format "%T %e %w%f" --timefmt "%Y-%m-%d %H:%M" -e modify -e attrib -e move -e create -e delete $ROOTDIR | while read line; do
  echo $line
done