grep -l string2 `grep -l string1 /path/*`
což je stejné jako
grep -l string2 $(grep -l string1 /path/*)
Edit:zde je důvod grep string1 /path/* | grep string2
nedělá to, co si myslím, že alwbtc chce.
$ cd /tmp
$ cat a
apples
oranges
bananas
$ cat b
apples
mangoes
lemons
$ cat c
mangoes
limes
pears
$ cd ~
$ grep apples /tmp/* | grep mangoes
$
Nebylo nalezeno nic, ale soubor b obsahuje oba řetězce.
Zde je to, co si myslím, že alwbtc chce
$ grep -l apples $(grep -l mangoes /tmp/*)
/tmp/b
První kanál grep
do jiného:
grep "string1" /path/to/files/* | grep "string2"