wget https://codeload.github.com/rvoicilas/inotify-tools/tar.gz/3.20.1
mv 3.20.1 inotify-tools-3.20.1.tar.gz
tar zxvf inotify-tools-3.20.1.tar.gz
cd inotify-tools-3.20.1
./autogen.sh
./configure
make
make install
#!/bin/bash
DIR=$1
inotifywait -mrq -e close_write $DIR | while read FILE
do
/bin/kw.sh
done
---------------
#!/bin/bash
DIR=$1
inotifywait -m -e close_write $DIR --format "%w%f" | while read FILE
do
cat ${FILE} | mail -s "Alarm: $FILE" admin@gmail.com
done