I use find
a lot, generally using the -name
or -iname
parameters.
I would like it to highlight the matching part in the files it finds (like grep
does).
For example: find . -iname "*FOO*"
would highlight instances for FOO
I know I could pipe it into grep
but I'd rather not write two commands each time.
Is there a simple way to do it?