介绍一个全文搜索的利器:ripgrep

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/henryhu712/article/details/84332939

通常,我在命令行下进行全文搜索,使用如下命令:

find . -type f -print0 | xargs -0 grep -li 'STRING'

现在使用一个号称速度最快、理解 git 的搜索利器 ripgrep(rp)

运行截图:

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/henryhu712/article/details/84332939
今日推荐