▲ | kccqzy 10 hours ago | |
I discovered and started using the silver searcher (ag) before ripgrep existed. I don't feel a strong need to switch for marginally faster search but with different command-line switches. Am I missing some killer feature here? | ||
▲ | burntsushi 10 hours ago | parent [-] | |
Fewer bugs? And perf depends on your haystack size. If you have lots of data to search, it's not hard to witness a 10x difference: https://news.ycombinator.com/item?id=45629904 As for features that ripgrep has that ag doesn't: * Much better Unicode support. (ag's is virtually non-existent.) * Pluggable preprocessors with --pre. * Jujutsu support. * ripgrep can automatically search UTF-16 data. * ripgrep has PCRE2 support. ag only has PCRE1 (which was EOL'd years ago). * ripgrep has a `-r/--replace` flag that lets you manipulate the output. I use it a lot instead of `sed` or `awk` (for basic cases) these days. * ripgrep is maintained. * ripgrep has multiline search that seemingly works much better. * ripgrep can search files bigger than 2GB. ag seemingly can't. * ag has lots of whacky bugs. e.g.,
Or:
Or:
There's probably more. But that's what comes to mind. |