Question

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

Était-ce utile?

La solution

you have to pass the filenames as arguments to grep:

grep 'pattern' $(locate 'filename')

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top