[NBLUG/talk] Finding a file containing a string
Todd Cary
todd at aristesoftware.com
Fri Oct 24 16:51:01 PDT 2003
As I recall, all I did was include the reference to the interbase.so
module in one of the configuration files so that when php and apache
started, the module was available.
So, I would like to find any "conf" file containing interbase.so.
Todd
Micxz wrote:
> 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
>
--
More information about the talk
mailing list