ack

Search tool like grep, optimized for searching source code

brewmacoslinux
Try with needOr install directly
Source

About

Search tool like grep, but optimized for programmers

Commands

ack

Examples

Search for a pattern in all files in the current directory$ ack 'function_name'
Search only in Python files for a specific pattern$ ack --python 'import os'
Search for a pattern and show line numbers with context$ ack -n 'TODO' --type=js