j
k
j a
j l
On 30 Jun 13:22, Laurie Brown wrote:
find [dir] -type f | xargs grep -liH "string"
Or, getting rid of the useless pipe, and using any modern version of find: find [dir] -type f -exec grep -liH "string" {} + Cheers, -- Brett Parker
Back to the thread
Back to the list