Posted by J.O. Aho on 09/28/45 11:40
Moneypenny wrote:
> I've got a complex opensource system, but it takes hours to find a function
> in this complex system.
>
> So the question is, is it possible to print in witch file the function
> exists?
> So i know where i can find a specific function.
You need to find the function first and then add a bit of code, so I don't
think this will help you much.
Use grep to find your function, eg
grep "function function_name" /path/to/a/lot/of/files/*
Have fun
//Aho
[Back to original message]
|