Localiza arquivos contendo string no nome do arquivo e string diferente no arquivo?

14

Eu gostaria de (recursivamente) encontrar todos os arquivos com "ABC" em seu nome de arquivo, que também contêm "XYZ" no arquivo. Eu tentei:

find . -name "*ABC*" | grep -R 'XYZ'

mas não está dando a saída correta.

    
por user997112 11.12.2015 / 13:07

4 respostas

25

Isso porque grep não pode ler nomes de arquivos para pesquisar a partir da entrada padrão. O que você está fazendo é imprimir os arquivos nomes que contêm XYZ . Use a opção find -exec em vez disso:

find . -name "*ABC*" -exec grep -H 'XYZ' {} +

De 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. 

[...]

   -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.  The command is executed in the
          starting directory.

Se você não precisar das linhas reais correspondentes, mas apenas da lista de nomes de arquivos que contém pelo menos uma ocorrência da string, use isso:

find . -name "*ABC*" -exec grep -l 'XYZ' {} +
    
por 11.12.2015 / 13:11
2

… | grep -R 'XYZ' não faz sentido. Por um lado, -R 'XYZ' significa agir recursivamente no diretório XYZ . Por outro lado, … | grep 'XYZ' significa procurar pelo padrão XYZ em grep da entrada padrão. \

No Mac OS X ou no BSD, grep tratará XYZ como padrão e reclamará:

$ echo XYZ | grep -R 'XYZ'
grep: warning: recursive search of stdin
(standard input):XYZ

O GNU grep não irá reclamar. Em vez disso, ele trata XYZ como um padrão, ignora sua entrada padrão e procura recursivamente a partir do diretório atual.

O que você queria fazer era provavelmente

find . -name "*ABC*" | xargs grep -l 'XYZ'

… que é semelhante a

grep -l 'XYZ' $(find . -name "*ABC*")

... os quais dizem grep para procurar por XYZ nos nomes dos arquivos correspondentes.

Note, no entanto, que qualquer espaço em branco nos nomes dos arquivos fará com que esses dois comandos sejam quebrados. Você pode usar xargs com segurança usando NUL como o delimitador:

find . -name "*ABC*" -print0 | xargs -0 grep -l 'XYZ'

Mas a solução @ terdon usando find … -exec grep -l 'XYZ' '{}' + é mais simples e melhor.

    
por 11.12.2015 / 19:15
1

Eu acho o seguinte comando da maneira mais simples:

grep -R --include="*ABC*" XYZ

ou adicione -i para pesquisar sem distinção entre maiúsculas e minúsculas:

grep -i -R --include="*ABC*" XYZ
    
por 15.12.2016 / 11:13
-1

Linux Commend: ll -iR | grep "nome do arquivo"

ex: Bookname.txt, em seguida, use ll -iR | grep "Bookname" ou ll -iR | grep "name" ou ll -iR | grep "Livro"

podemos pesquisar com parte do nome do arquivo.

Isso listará todos os nomes de arquivos correspondentes às pastas atuais e subpastas

    
por 04.09.2018 / 07:48

Tags