Vorrei (ricorsivamente) trovare tutti i file con "ABC" nel nome del loro file, che contiene anche "XYZ" nel file. Provai:
find . -name "*ABC*" | grep -R 'XYZ'
ma non sta dando l'output corretto.
Vorrei (ricorsivamente) trovare tutti i file con "ABC" nel nome del loro file, che contiene anche "XYZ" nel file. Provai:
find . -name "*ABC*" | grep -R 'XYZ'
ma non sta dando l'output corretto.
Risposte:
Questo perché grep
non è possibile leggere i nomi dei file da cercare dall'input standard. Quello che stai facendo è stampare i nomi dei file che contengono XYZ
. Usa find
s' -exec
opzione invece:
find . -name "*ABC*" -exec grep -H 'XYZ' {} +
Da 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 non hai bisogno delle linee di corrispondenza effettive ma solo dell'elenco dei nomi di file contenente almeno un'occorrenza della stringa, utilizza invece questa:
find . -name "*ABC*" -exec grep -l 'XYZ' {} +
Trovo il seguente comando nel modo più semplice:
grep -R --include="*ABC*" XYZ
o aggiungi -i
alla ricerca senza distinzione tra maiuscole e minuscole:
grep -i -R --include="*ABC*" XYZ
… | grep -R 'XYZ'
non ha senso. Da un lato, -R 'XYZ'
significa agire in modo ricorsivo sulla XYZ
directory. D'altra parte, … | grep 'XYZ'
significa cercare il modelloXYZ
a grep
's standard input. \
Su Mac OS X o BSD, grep
tratteranno XYZ
come un modello e lamenteremo:
$ echo XYZ | grep -R 'XYZ'
grep: warning: recursive search of stdin
(standard input):XYZ
GNU grep
non si lamenterà. Piuttosto, trattaXYZ
come un modello, ignora il suo input standard e cerca ricorsivamente a partire dalla directory corrente.
Quello che intendevi fare era probabilmente
find . -name "*ABC*" | xargs grep -l 'XYZ'
... che è simile a
grep -l 'XYZ' $(find . -name "*ABC*")
... entrambi i quali dicono grep
di cercare XYZ
nei nomi dei file corrispondenti.
Si noti, tuttavia, che qualsiasi spazio bianco nei nomi dei file provoca l'interruzione di questi due comandi. Puoi usare in xargs
sicurezza usando NULcome delimitatore:
find . -name "*ABC*" -print0 | xargs -0 grep -l 'XYZ'
Ma la soluzione di @ terdon find … -exec grep -l 'XYZ' '{}' +
è più semplice e migliore.
Raccomandazione Linux: ll -iR | grep "nome file"
es: Bookname.txt quindi usa ll -iR | grep "Bookname" o ll -iR | grep "name" o ll -iR | grep "Libro"
possiamo cercare con parte del nome del file.
Questo elencherà tutti i nomi dei file corrispondenti dalle cartelle correnti e secondarie
find
come mostrato in alcune delle altre risposte.