Sim, find ./work -print0 | xargs -0 rm
irá executar algo parecido rm ./work/a "work/b c" ...
. Você pode verificar com echo
, find ./work -print0 | xargs -0 echo rm
imprimirá o comando que será executado (exceto que o espaço em branco será escapado adequadamente, embora o echo
não mostre isso).
Para xargs
colocar os nomes no meio, é necessário adicionar -I[string]
onde [string]
é o que você deseja substituir pelo argumento; nesse caso, você usaria -I{}
, por exemplo <strings.txt xargs -I{} grep {} directory/*
.
O que você realmente deseja usar é grep -F -f strings.txt
:
-F, --fixed-strings
Interpret PATTERN as a list of fixed strings, separated by
newlines, any of which is to be matched. (-F is specified by
POSIX.)
-f FILE, --file=FILE
Obtain patterns from FILE, one per line. The empty file
contains zero patterns, and therefore matches nothing. (-f is
specified by POSIX.)
Portanto grep -Ff strings.txt subdirectory/*
, encontrará todas as ocorrências de qualquer sequência strings.txt
como literal, se você soltar a -F
opção, poderá usar expressões regulares no arquivo. Você também pode usar grep -F "$(<strings.txt)" directory/*
. Se você deseja praticar find
, pode usar os dois últimos exemplos no resumo. Se você deseja fazer uma pesquisa recursiva em vez do primeiro nível, você tem algumas opções, também no resumo.
Resumo:
# grep for each string individually.
<strings.txt xargs -I{} grep {} directory/*
# grep once for everything
grep -Ff strings.txt subdirectory/*
grep -F "$(<strings.txt)" directory/*
# Same, using file
find subdirectory -maxdepth 1 -type f -exec grep -Ff strings.txt {} +
find subdirectory -maxdepth 1 -type f -print0 | xargs -0 grep -Ff strings.txt
# Recursively
grep -rFf strings.txt subdirectory
find subdirectory -type f -exec grep -Ff strings.txt {} +
find subdirectory -type f -print0 | xargs -0 grep -Ff strings.txt
Você pode usar a -l
opção para obter apenas o nome de cada arquivo correspondente, se não precisar ver a linha real:
-l, --files-with-matches
Suppress normal output; instead print the name of each input
file from which output would normally have been printed. The
scanning will stop on the first match. (-l is specified by
POSIX.)