johny why Asked: 2018-08-25 13:47:16 +0800 CST2018-08-25 13:47:16 +0800 CST 2018-08-25 13:47:16 +0800 CST ripgrep 与 Silver searcher ag 有何不同?[关闭] 772 这些有关系吗? 哪个更快? 可以限制为目录名称吗? https://github.com/BurntSushi/ripgrep https://github.com/ggreer/the_silver_searcher ag ripgrep 1 个回答 Voted Best Answer otter.pro 2019-06-11T13:07:29+08:002019-06-11T13:07:29+08:00 Ripgrep (rg) 和 Silver Searcher (ag) 都执行文本搜索,并且都被创建为更好更快的grep. 性能方面,两者似乎相似,尽管基准表明 Ripgrep 在许多情况下更快(https://blog.burntsushi.net/ripgrep/)。 随着 Ripgrep 的日益普及,它已被集成到 MS Visual Code 中(Visual Studio Code 2017 年 3 月)。 在功能方面,两者看起来非常相似。命令也非常相似。 RIPgrep: rg "foo" -g "*.cpp" 白银搜索者: ag -G '\.cpp$' 'foo' 要将搜索限制在目录中,请在命令中添加路径: ag "bar" /etc/ rg "bar" /etc/
Ripgrep (rg) 和 Silver Searcher (ag) 都执行文本搜索,并且都被创建为更好更快的
grep
.性能方面,两者似乎相似,尽管基准表明 Ripgrep 在许多情况下更快(https://blog.burntsushi.net/ripgrep/)。
随着 Ripgrep 的日益普及,它已被集成到 MS Visual Code 中(Visual Studio Code 2017 年 3 月)。
在功能方面,两者看起来非常相似。命令也非常相似。
RIPgrep:
白银搜索者:
要将搜索限制在目录中,请在命令中添加路径: