命令“find . -type f -size 1033c ! -executable -exec file {} + | grep ASCII”中“{} +”的含义

命令“find . -type f -size 1033c ! -executable -exec file {} + | grep ASCII”中“{} +”的含义

{} +这个命令中有什么意义呢?

find . -type f -size 1033c ! -executable -exec file {} + |
grep ASCII

你能通过分解命令来向我解释一下它的作用吗?我是一个菜鸟。

答案1

{} +表示找到的文件/目录的集合。

例如:

find . -type d -empty -exec rmdir {} + ;

这将找到空目录并运行rmdir DIRNAME1 DIRNAME2 ....

相关内容