Como encontrar ocorrências de mxprod | nlsoprdc dentro de múltiplos arquivos em um diretório? [duplicado]

0

Como posso:

  • Procure um padrão específico no conteúdo de arquivos em um diretório e seu subdiretório
  • E liste o nome do arquivo se ele tiver determinado padrão?
por kavya 10.08.2017 / 07:05

1 resposta

1

use: os sinalizadores -l e -r :

grep -l -r pattern

man grep

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

-R, -r, --recursive Read all files under each directory, recursively; this is equivalent to the -d recurse option.

    
por 10.08.2017 / 07:18

Tags