如何使用inotify自动删除Linux中创建的文件?

发布于 2024-12-18 09:54:35 字数 316 浏览 1 评论 0原文

我正在尝试使用 inotify 删除创建的文件,但它不起作用:

inotifywait -r --format '%w%f' -e create /test && rm $FILE

当我在 /test 中创建文件时,我得到这个:

/test/somefile.txt
rm: missing operand
Try `rm --help' for more information.

所以看来 $FILE 变量没有传递给 rm 命令...我该如何这样做正确吗?谢谢。

I am trying to delete a created file with inotify but it doesn't work:

inotifywait -r --format '%w%f' -e create /test && rm $FILE

when i create a file in /test I get this:

/test/somefile.txt
rm: missing operand
Try `rm --help' for more information.

so it seems that the $FILE variable is not passed to the rm command... how can I do this correctly? Thanks.

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

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

发布评论

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

评论(1

泪意 2024-12-25 09:54:35

当启动 inotifywait 一次(不带 -m 标志)时,您可以轻松使用 xargs

inotifywait -r --format '%w%f' -e create /test -q | xargs /bin/rm

:将等待 /test 中创建文件,将文件名赋予 xargs 并将该参数赋予 /bin/rm 以删除文件,然后退出。

如果您需要持续监视您的目录(使用 inotifywait 的 -m 参数),请创建一个如下脚本文件:

inotifywait -m -r --format '%w%f' -e create /test | while read FILE
do
        /bin/rm $FILE
done

然后,在 /test 目录中创建的每个新文件都将被删除。

When launching your inotifywait once (without the -m flag), you can easily use xargs :

inotifywait -r --format '%w%f' -e create /test -q | xargs /bin/rm

that will wait for a file creation in /test, give the filename to xargs and give this arg to /bin/rm to delete the file, then it will exit.

If you need to continuously watch your directory (with the -m param of inotifywait), create a script file like this :

inotifywait -m -r --format '%w%f' -e create /test | while read FILE
do
        /bin/rm $FILE
done

And then, every newly file created in you /test directory will be removed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文