正确的find -exec语法是什么


10

我想删除特定文件夹中大于2MB的文件。所以我跑了:

find . -size +2M

我得到了两个文件的清单

./a/b/c/file1

./a/f/g/file2

所以我然后运行:

find . -size +2M -exec rm ;

我收到错误消息 Find: missing argument to -exec

我在手册页中检查了语法,并说 -exec command ;

所以我尝试

find . -size +2M -exec rm {} +

而且有效。据我所知,{}使它执行类似命令rm file1 file2代替rm file1; rm file2;

那么为什么第一个不起作用?

回答:

我想我只需要几次RTFM才能最终了解它在说什么。即使第一个示例未显示{},在所有情况下都必须使用大括号。然后添加\; 或+,具体取决于所需的方法。不要只阅读标题。还要阅读说明。得到它了。

Answers:


16

您可以使用以下任何形式:

find . -size +2M -exec rm {} +

find . -size +2M -exec rm {} \;

分号应该转义!


10
-exec rm {} \;

你可以使用..男人找到

-exec command ;
              Execute command; true if 0 status is returned.  All following arguments to find are taken to be arguments to the  command  until
              an  argument  consisting of `;' is encountered.  The string `{}' is replaced by the current file name being processed everywhere
              it occurs in the arguments to the command, not just in arguments where it is alone, as in some versions of find.  Both of  these
              constructions  might  need  to  be escaped (with a `\') or quoted to protect them from expansion by the shell.  See the EXAMPLES
              section for examples of the use of the -exec option.  The specified command is run once for each matched file.  The  command  is
              executed  in  the  starting directory.   There are unavoidable security problems surrounding use of the -exec action; you should
              use the -execdir option instead.

       -exec command {} +
              This variant of the -exec action runs the specified command on the selected files, but the command line is  built  by  appending
              each  selected file name at the end; the total number of invocations of the command will be much less than the number of matched
              files.  The command line is built in much the same way that xargs builds its command  lines.   Only  one  instance  of  `{}'  is
              allowed within the command.  The command is executed in the starting directory.

1
喔好吧。我想我只需要几次RTFM才能最终了解它在说什么。即使第一个示例未显示{},在所有情况下都必须使用大括号。然后添加\; 或+,具体取决于所需的方法。得到它了。
萨法多2011年

2

为了提高效率,通常最好使用xargs:

$ find /path/to/files -size +2M -print0 | xargs -0 rm

1
并不是的。正如Greg Wiki上的Guide条目所述:-exec操作末尾的+(而不是;)指示find使用内部类似xargs的功能,该功能导致rm命令对于每个文件块仅被调用一次,而不是每个文件一次。
适配器

啊,有趣。多年来,我一直在使用find + xargs,但我从未听说过+运算符。感谢您指出了这一点!
EEAA 2011年

我可以全心推荐Greg的Wiki;这个人对bash和GNU工具集的了解比我以前所学的要多。可以肯定地说,自从我开始阅读bash以来,比过去的所有年我都学到了更多有关bash的知识。
适配器

2
谁是Greg,在哪里可以找到他的Wiki?
萨法多2011年

@Safado我认为是这个:mywiki.wooledge.org
Enrico Stahn

0

我根本不会使用-exec。find也可以删除文件本身:

find . -size +2M -delete

(虽然这可能是GNUism,但不知道您是否会在非gnu find中找到它)


这是背后的原因还是仅仅是个人喜好?
萨法多2011年

find只是调用unlink(2)本身,而不必派生新进程来进行删除。这样会更有效率。它也更具可读性。

0

如所记录的,-exec要求{}作为find输出的占位符。

使用bash和GNU工具的权威指南是在这里

如您所见,它显式显示了您作为示例使用的第二条命令。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.