Searching Source Code: LXR and grep
Looking for a certain functionality in someone else's code could prove to be a tough challenge. This is increased by the size of the given project. Many systems exist today facilitating easy search in a project. For Java, eclipse is best used for that task, as it contains a strong in java class indexing, classification, and searching.
Some projects provide for you a portal to search their code base. Famous examples of these are LXR for the Linux kernel, and it's customized version MXR used for Mozilla projects.
When all the above options are not available, the alternative exists natively in most linux systems. This is namely "grep". Grep is a strong command for regular expression matching. On if it's features is that it can also match to the content within files. Putting that in mind, the following command could be very useful:
grep -R "search query" .
This looks recursively for all mentions of search query
in all files under the current directory. This prints output in the console the file name where this query was found, and the line that included it.
To be able to store this search result in a file, the output could be piped as follows:
grep -R "search query" . > log.txt