On Tue, 2003-02-25 at 16:57, Scott Koos wrote:
> Hi All,
>
>    Dumb question on grep, I'm trying to find if a file exists and the path
> to it.  ls -laR | grep yyyyy shows me the yyyyy file exists, is there a way
> to show the path to the file also.

find is your friend

find . -name "*yyyyy*" -print

Reply via email to