inotify:脚本运行两次

inotify:脚本运行两次

以下 bash 脚本在文件更改上运行两次,但我一次更改一个文件。

count=1

inotifywait -qm --event modify --format '%w' /Drives/My_Drive/Rapid/containerized_personal_tasks_automation/environment_setup/* | while read -r file ; do
    echo "Files Modified ${count}"
    ((count ++))
done

相关内容