Você pode usar qualquer um dos formulários:
find . -size +2M -exec rm {} +
find . -size +2M -exec rm {} \;
O ponto-e-vírgula deve ser escapado!
Eu queria excluir arquivos maiores que 2 MB em uma pasta específica. Então eu corri:
find . -size +2M
E eu tenho uma lista de dois arquivos
./a/b/c/file1
./a/f/g/file2
Então eu corro:
find . -size +2M -exec rm ;
e recebo a mensagem de erro Find: missing argument to -exec
Eu verifico a sintaxe na página man e ela diz -exec command ;
Então, em vez disso, tento
find . -size +2M -exec rm {} +
E isso funciona. Eu entendo que o {} faz com que ele execute o comando como rm file1 file2
em vez de rm file1; rm file2;
.
Então por que o primeiro não funcionou?
RESPOSTA:
Eu acho que eu tive que RTFM um par de vezes para finalmente entender o que estava dizendo. Mesmo que o primeiro exemplo não mostre {}, as chaves são necessárias em todos os casos. E então adicione \; ou + dependendo do método desejado. Não leia apenas o título. Leia a descrição também. Consegui.
-exec rm {} \;
você pode usar .. man find
-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.
Por uma questão de eficiência, geralmente é melhor usar xargs:
$ find /path/to/files -size +2M -print0 | xargs -0 rm
Eu não usaria -exec nada disso. find também pode remover arquivos:
find . -size +2M -delete
(este é provavelmente um GNUism, não sei se você encontraria isso em um achado não-gnu)
Conforme documentado, -exec requer {} como um espaço reservado para a saída do find.
O guia definitivo para o uso de ferramentas bash e GNU é aqui
Como você pode ver, ele mostra explicitamente o segundo comando usado como exemplo.