grep -l string2 `grep -l string1 /path/*`
che è uguale a
grep -l string2 $(grep -l string1 /path/*)
Modifica:ecco perché grep string1 /path/* | grep string2
non fa quello che penso voglia alwbtc.
$ cd /tmp
$ cat a
apples
oranges
bananas
$ cat b
apples
mangoes
lemons
$ cat c
mangoes
limes
pears
$ cd ~
$ grep apples /tmp/* | grep mangoes
$
Niente trovato, ma il file b contiene entrambe le stringhe.
Ecco cosa penso che alwbtc voglia
$ grep -l apples $(grep -l mangoes /tmp/*)
/tmp/b
Pipa un grep
in un altro:
grep "string1" /path/to/files/* | grep "string2"