Zet - How can I get standard grep to behave like ripgrep?
How can I get standard grep to behave like ripgrep?
You can’t match the speed, but the recursive catch all behaviour can be achieved with
grep -rnI --line-number '{searchTerm}' ./
or create a temporary bash function replacement
rg() { grep -rnI --line-number "$1" .; }
#grep #rg #ripgrep