使用 inotifywait 监视新文件时忽略新目录

使用 inotifywait 监视新文件时忽略新目录

我正在使用 inotifywait 来监视新文件。但我想忽略新目录。我似乎无法让任何事情正常工作。

以下是我正在使用的:

#!/bin/sh
MONITORDIR1="/hdd_1/path/to/dir"
MONITORDIR2="/hdd_1/path/to/dir"
#MONITORDIR3="/hdd_1/path/to/dir"
#MONITORDIR4="/hdd_1/path/to/dir"

monitor() {
inotifywait -m -r -e create --exclude '/\..+' --format "%f" "$1" | while read NEWFILE
do
        echo "This is an automated email." | mail -s "${NEWFILE} has been added to Daemon!" "[email protected]"
done
}
monitor "$MONITORDIR1" &
monitor "$MONITORDIR2" &
#monitor "$MONITORDIR3" &
#monitor "$MONITORDIR4" &

答案1

这很简单。删除递归标志-r并使用列出现有目录find

monitor() {
  dirs=$(find "$1" -type d)
  inotifywait -m -e create --exclude... --format... $dirs |while ...
}

相关内容