6

Tip #64   Find occurrences of a string in a large code base without firing

example, look for all the TODO and HACK strings I left in large java project and show a bit of context before and after using the -C switch of grep.


find path_to_start | grep \\.java | xargs egrep -C3 "TODO|HACK" | less