如何使用inotify自动删除Linux中创建的文件?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当启动 inotifywait 一次(不带 -m 标志)时,您可以轻松使用 xargs
:将等待 /test 中创建文件,将文件名赋予 xargs 并将该参数赋予
/bin/rm
以删除文件,然后退出。如果您需要持续监视您的目录(使用 inotifywait 的 -m 参数),请创建一个如下脚本文件:
然后,在 /test 目录中创建的每个新文件都将被删除。
When launching your inotifywait once (without the -m flag), you can easily use xargs :
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 :
And then, every newly file created in you /test directory will be removed.