[NBLUG/talk] Finding a file containing a string

Micxz an_email at micxz.com
Fri Oct 24 16:40:07 PDT 2003


Todd Cary wrote:
> I have php configured so that it can use Interbase, however I did not 
> write down how I accomplished that.
> 
> There is a file, "interbase.so" and it needs to be included when php 
> starts.  I have looked in the obvious places (e.g. php.ini and 
> php.conf), so I would like to search all files (starting with *.conf) 
> and look for any files containing "interbase.so".
> 
> How can I do that?
> 
> Todd

You do have php compiled with interbase support? Did  hear that right?

and searching is easy first 'man find' then:

find . -name *.conf -print 2>/dev/null

in current directory or from the TOP:

find / -name *.conf -print 2>/dev/null

find / -name interbase.so -print 2>/dev/null

-- 
Micxz




More information about the talk mailing list