Как в
find -L /etc/ssl/certs/ -type l -exec rm {} +
Таким образом, он находит все неработающие символические ссылки и удаляет их. Но как именно я интерпретирую {} +
часть?
Из man find
:
-exec command {} +
This variant of the -exec option 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. The command is executed in the
starting directory.
Итак, он вызовет команду:
rm [filename1] [filename2] [...] [lastfilename]
Если файлов больше, чем может поместиться в списке аргументов rm
будет называться более одного раза. (Это то, что xargs
делает.)
Без {} +
это просто позвонит rm
куча раз без аргументов.
В {}
бит - это заполнитель для exec
команда. Все файлы, найденные с помощью find, вставляются вместо скобок. В +
означает создать длинный список найденных файлов и вызвать exec для всех их сразу, а не по одному, как в более традиционных -exec {} \;
вариант.