5

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

A slight improvement to #64 -- drops one grep and adds line numbers


find _path_to_start_ -name '*.php' | xargs egrep -nC3 'TODO|HACK' | less