Đối với cấu trúc lệnh -exec command {} \;
, tôi có thông tin trong man find
.
- {} có nghĩa là
selected files
. - ; có nghĩa là hủy bỏ lập luận.
- \; thoát ra để bảo vệ chúng khỏi sự bành trướng của vỏ.
Trong đoạn liên quan đến -exec command {} +
.
-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 invoca‐
tions 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, and (when find is being invoked
from a shell) it should be quoted (for example, '{}') to protect
it from interpretation by shells. The command is executed in
the starting directory. If any invocation returns a non-zero
value as exit status, then find returns a non-zero exit status.
If find encounters an error, this can sometimes cause an immedi‐
ate exit, so some pending commands may not be run at all. This
variant of -exec always returns true.
Nó không bao giờ nói điều gì trên +
, + có nghĩa là gì trong bash -exec command {} +
?
Nó có nghĩa là chấm dứt các đối số như ;
?
+
có nghĩa là cộng như , 3+5=8
hoặc concatenate
, để nối hai chuỗi thành một, chẳng hạn như s1
+ s2
.
Đó là một điều kỳ lạ để gán một ý nghĩa terminate the argument
cho +
.