gpt4 book ai didi

linux - inotify兼容的shell脚本监控某个目录的shell

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:25 24 4
gpt4 key购买 nike

这是 Stack overflow 中的第一个问题。需要一个 inotify 兼容的脚本编写来监视某个目录,如果在其中创建了任何新文件/文件夹,请将这些文件复制到另一个文件夹。我需要脚本不断监视更改而不是定期运行。提前致谢。

最佳答案

您可以使用 inotify-tools 页面中的 inotifywait 来构建类似的东西。典型用途:

inotifywait -m /tmp | while read path events name; do
echo "Now I am going to do something with $name in directory $path."
done

有很多选项可以控制 inotifywait 的运行方式;有关详细信息,请参阅手册页。

关于linux - inotify兼容的shell脚本监控某个目录的shell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11740430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com