DEV Community

Discussion on: List all the files containing a phrase | ag, rg

Collapse
 
mccurcio profile image
Matt Curcio

Wow, I was not aware of ag and rg. I will look into them.

Is it possible for to sum up in a line or two why you like these over grep?

Collapse
 
waylonwalker profile image
Waylon Walker

They are a bit faster and have some nice modern features. For instance, by default they are recursive, but ignore hidden and gitignored files. If you have a virtual environment or node_modules in your project directory this can make a search infinitely faster than it is compared to grep digging around in node_modules.