[NBLUG/talk] Finding files containing a string

Scott Doty scott at sonic.net
Sun Dec 12 12:04:31 PST 2004


On Sun, Dec 12, 2004 at 12:02:36PM -0800, Todd Cary wrote:
> <<<
> Do you want to find the string "interbase.so" inside of a file?
> >>>
> 
> Yes! When I use the grep in my previous message, I only get the file 
> name (expected); I want to have the fully qualaified file name i.e. the 
> directory plus file name.

find . -type f | xargs fgrep -l 'interbase.so'

 -Scott




More information about the talk mailing list