rg - 当前最快的文本搜索神器

前言

之前有写过一篇文本搜索工具简单使用博文:ag - the Silver Searcher,后来发现 ag 在 Windows 下搜索结果中文显示乱码,官方至今一直仍未解决。

并且现在,最近几年又出现了一款更加优秀的文本搜索神器:ripgrep,稍微试了一下,速度很快,跨平台并且支持中文,很符合本人需求。

下面就简单介绍下 rg 及其常用的一些选项。

简介

依据正则匹配递归搜索目录

依据给定的正则表达式,rg 以面向行为单位的模式进行递归搜索。默认情况下,rg 会尊重你的.gitignore配置以及自动忽略隐藏文件/目录和二进制文件。

rg 具有以下一些特性:

  • 自动递归搜索目录(相当于:grep -R
  • 自动高亮匹配结果
  • 默认自动忽略.gitignore指定的文件,隐藏文件和二进制文件
  • 可以搜索指定文件类型
  • 支持grep大部分常用特性
  • 支持各种文件编译(UTF-8, UTF-16, latin-1, GBK, EUC-JP, Shift_JIS 等等)
  • 支持搜索常见压缩文件(gzip,xz,lzma,bzip2,lz4)
  • 不支持多行搜索和花哨的正则

用法

  • 格式:
USAGE:

    rg [OPTIONS] PATTERN [PATH ...]
    rg [OPTIONS] [-e PATTERN ...] [-f PATTERNFILE ...] [PATH ...]
    rg [OPTIONS] --files [PATH ...]
    rg [OPTIONS] --type-list
    command | rg [OPTIONS] PATTERN

举个例子:

rg RxJava  // 递归搜索当前目录内含 RxJava 的文件
rg install ReadMe.md // 在 ReadMe.md 中搜索字符串 install

常用选项简介

  • 输出选项

-g, --glob <GLOB>
Include or exclude files and directories for searching that match the given glob. This always overrides any other ignore logic. Multiple glob flags may be used. Globbing rules match .gitignore globs. Precede a glob with a ! to exclude it.
正则匹配添加或排除搜索某些类型文件或目录。在glob之前加上一个!表示排除搜索。

eg:在当前目录搜索require('uglifyjs-webpack-plugin')

rg -F "require('uglifyjs-webpack-plugin')" -g "*.md"  // 搜索所有`.md`文件
rg -F "require('uglifyjs-webpack-plugin')" -g "!*.md" // 不搜索`.md`文件

--iglob <GLOB>:同-g, --glob <GLOB>,但忽略大小写。

-l, --files-with-matches
Only print the paths with at least one match.
只打印匹配内容的文件名。

-v, --invert-match
Invert matching. Show lines that do not match the given patterns.
反向匹配。

-C/--context [Lines]
Show the lines surrounding a match.
输出匹配内容前后[ LINES ]行内容

eg:搜索require('uglifyjs-webpack-plugin'),输出该行前后各2行内容:

rg -C 2 "require\('uglifyjs-webpack-plugin'\)" // 括号需要转义

-F, --fixed-strings
Treat the pattern as a literal string instead of a regular expression.
When this flag is used, special regular expression meta characters such as .(){}*+ do not need to be escaped.
将匹配字符作为字符串,而不是正则表达式。也就是匹配字符.(){}*+无须进行转义。

eg:搜索require('uglifyjs-webpack-plugin'),输出该行前后各2行内容:

rg -C 2 -F "require('uglifyjs-webpack-plugin')" ./   // 括号无须转义

--max-depth <NUM>
Limit the depth of directory traversal to NUM levels beyond the paths given. A value of zero only searches the explicitly given paths themselves.

For example, 'rg --max-depth 0 dir/' is a no-op because dir/ will not be
descended into. 'rg --max-depth 1 dir/' will search only the direct children of
'dir'.
限制文件夹递归搜索深度。rg --max-depth 0 dir/则不执行任何搜索;rg --max-depth 1 dir/只在dir/当前目录中进行搜索。

-M/--max-columns
Limit the length of lines printed by ripgrep.
限制输出最大行数。

--files
Print the files that ripgrep would search, but don't actually search them.
打印会进行查找的文件,该选项并不会执行实际查询操作。
格式:rg [OPTIONS] --files [PATH ...],此处不能加pattern

eg:打印当前文件会进行查找的文件:

rg --files . // 列出当前文件夹会进行查询的所有文件

:该选项其实可相当于:find . -type f,查找当前目录所有文件

-c/--count
Report a count of total matched lines.
计算匹配文件数量

--debug
Shows ripgrep's debug output. This is useful for understanding why a particular file might be ignored from search, or what kinds of configuration ripgrep is loading from the environment.
显示调试信息。有利于了解某一个具体文件被忽略的原因,或者 rg 从环境变量中加载了什么配置。

  • 输入选项

-e, --regexp <PATTERN>
A pattern to search for. This option can be provided multiple times, where all patterns given are searched. Lines matching at least one of the provided patterns are printed. This flag can also be used when searching for patterns that start with a dash.

For example, to search for the literal '-foo', you can use this flag: rg -e -foo

You can also use the special '--' delimiter to indicate that no more flags will be provided. Namely, the following is equivalent to the above: rg -- -foo
使用正则搜索。

rg 本身就支持正则表达式,-e主要用于匹配前缀带-的字符串 或者 想匹配多个字符串(多次使用该选项即可)。

eg:同时查找'hello' 和 'world':

echo 'hi hello world' | rg -e 'hello' -e 'world'
echo 'hi hello world' | rg 'hello|world'          // 或者直接使用正则

eg:搜索内容包含startXXXend的字符串:

rg -e "start.*end" .  // 这样,`startXXXend`,`XXXstartendXXX`,`XXXstartXXXend`,`XXXstartXXXendXXX`都会匹配
rg "start.*end" .     // 与上述一致功能

-i/--ignore-case
When searching for a pattern, ignore case differences. That is rg -i fast matches fast, fASt, FAST, etc.
忽略大小写

-S/--smart-case
This is similar to --ignore-case, but disables itself if the pattern contains any uppercase letters. Usually this flag is put into alias or a config file.
打开智能大小写,通常该选项相当于--ignore-case,但在输入大写时,则取消忽略大小写功能。

-w/--word-regexp
Require that all matches of the pattern be surrounded by word boundaries. That is, given pattern, the --word-regexp flag will cause ripgrep to behave as if pattern were actually \b(?:pattern)\b.
打开单词边界,只进行单词匹配。

-a/--text
Search binary files as if they were plain text.
搜索二进制文件(将二进制文件看出文本文件)

--hidden
Search hidden files and directories. By default, hidden files and directories are skipped. Note that if a hidden file or a directory is whitelisted in an ignore file, then it will be searched even if this flag isn't provided.
搜索隐藏文件。默认不搜索隐藏文件,如果隐藏文件处于.gitignore配置白名单中,则会进行搜索,即使没有提供该选项。

-r, --replace <REPLACEMENT_TEXT>
Replace every match with the text given when printing results. Neither this flag nor any other ripgrep flag will modify your files.

Capture group indices (e.g., $5) and names (e.g., $foo) are supported in the replacement string.

Note that the replacement by default replaces each match, and NOT the entire line. To replace the entire line, you should match the entire line.

This flag can be used with the -o/--only-matching flag.
字符替换。将匹配的字符替换成自定义字符,该选项不会更改源文件,只是替换输出显示。

eg:查找文件类型为.py的文件,并将其路径中的\改为/

rg --files . | rg -F ".py"| rg -F \ -r /

其他

  • 自动过滤:前面说过,rg 在递归搜索时,会自动过滤.gitignore匹配规则,忽略隐藏文件和目录,忽略二进制文件和链接。
    但所有这些过滤都可以通过各自指定标记进行消除:
    1)--no-ignore/-u:不响应.gitignore的匹配规则
    2)--hidden/-uu:搜索隐藏文件和目录
    3)-a/--text/-uuu:搜索二进制文件
    4)-L/--folow:追踪链接文件

  • 手动过滤:globs(-g, --glob:手动过滤文件类型与目录,其会按与.gitignore·一样的模式被解析,也就是,位于后面的 glob 会替换前面的 glob。
    举个例子:rg clap -g "*.toml" -g "!*.toml",其实相当于:rg clap -g "!*.toml",也就是不会搜索.toml文件了。

rg word -g "*.py"        // 查找 .py 文件内含 word
rg word -g "!test/*"     // 排除当前目录下的 test 目录
rg --file . -g "!**/.git/**" // 排除当前目录及其子目录下的 .git 目录
  • 手动过滤:文件类型(-g, --glob:使用上述 globs 模式其实就能实现文件类型与目录的过滤了,但如果只想过滤文件类型,可直接使用选项:-t/--type
    举个例子:
rg "fn run" --type rust // 文件类型:rust
rg "fn run" --trust     // 文件类型:rust,更简洁
rg "int main" -tc       // 文件类型:C,包含`.c`和`.h`文件,相当于:rg "int main" -g "*.{c,h}"

rg clap --type-not rust // 排序 rust 文件
rg clap -Trust          // 排序 rust 文件,更简洁

:即-t包含文件类型,-T排除文件类型。
文件类型可通过:rg --type-list进行查看。

参考

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容

  • 官网 中文版本 好的网站 Content-type: text/htmlBASH Section: User ...
    不排版阅读 4,380评论 0 5
  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,319评论 0 10
  • pyspark.sql模块 模块上下文 Spark SQL和DataFrames的重要类: pyspark.sql...
    mpro阅读 9,449评论 0 13
  • 地方 - 四谛法 - 四谛法 ################### Filebeat Configuration...
    linghu323323阅读 998评论 0 1
  • ################### Filebeat Configuration Example ######...
    ssdsss阅读 9,705评论 1 1