I am trying to list all of the files that include a function, e.g., matrixCal.
How can I to do this in linux?
|
I am trying to list all of the files that include a function, e.g., How can I to do this in linux? |
|||||||||
|
|
Would grep be ok?
|
|||||
|
|
You might be interested in the program |
|||
|
|
|
The traditional approach is to create an index of function and variable definitions for your source code, and use your editor to search this index. The traditional indexing command is called For example, for a C source tree, here is how you might generate the
For a large source tree checked out under Subversion, here are two refinements: ignore
Then, in Emacs, run |
|||
|
|