> 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 >
Also, locate is often pretty handy" locate yyyyy for more info, man locate -- Cheers John Summerfield Microsoft's most solid OS: http://www.geocities.com/rcwoolley/ Note: mail delivered to me is deemed to be intended for me, for my disposition. ============================== If you don't like being told you're wrong, be right!
