Вопрос

locate 'filename' | grep 'pattern' locates files then greps their file names. I want to grep the contents of the file instead.

Это было полезно?

Решение

you have to pass the filenames as arguments to grep:

grep 'pattern' $(locate 'filename')

(the $(...) will evaluate the command and return it's stdoutput)

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top