添加目录中的文件后,如何使用 inotify-tools 向我发送电子邮件?

发布于 2024-11-28 19:09:47 字数 277 浏览 2 评论 0原文

用户有时会将文件添加到 Linux 服务器上的目录中。我正在寻找在文件添加到此目录时收到通知的方法。我找到了inotify-tools:

https://github.com/rvoicilas/inotify-tools/wiki/

但我不太确定如何使用它。我似乎找不到合适的文档。

如果有这方面经验的人能够指导我,我将不胜感激。

Users sometimes add files to a directory on a linux server. I was looking at ways to be informed when a file has been added to this directory. I found inotify-tools:

https://github.com/rvoicilas/inotify-tools/wiki/

But I am not too sure how to go about using it. I can't seem to find a proper documentation on it.

I would appreciate it if anyone with experience in it could guide me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悸初 2024-12-05 19:09:47

使用inotifywait,您可以做您想做的事情,请查看手册页

With inotifywait you can do what you want, check the manual page.

你与昨日 2024-12-05 19:09:47

尝试使用 entr,例如

while true; do find path/ | entr -d echo Changed | mail [email protected]; done

或:

while true; do ls path/* | entr -pd echo Changed | mail [email protected]; done

Try using entr, e.g.

while true; do find path/ | entr -d echo Changed | mail [email protected]; done

or:

while true; do ls path/* | entr -pd echo Changed | mail [email protected]; done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文