On Fri, Dec 11, 2009 at 10:51 AM, Josh More <morej at alliancetechnologies.net> wrote: > Yep. > > grep -r "string" / The problem there is that it prints the matched lines as well. I want just the names. I could put that output into cut though. That's it! grep "string" * | cut -d: -f1 -s -- Todd