如何使用 ripgrep 查找相邻的重复单词。例如
one hello hello world
如何hello hello
使用 ripgrep 定位?
解决了
rg '(hello)[[:blank:]]+\1' --pcre2 <<<'one hello hello world'
我希望 ripgrep 搜索具有指定模式的路径。例如
rg PATTERN --path REGEX
其中 PATTERN 是 grep 的模式,而 REGEX 是路径匹配模式。
我已经分散了文档,我不确定是否包含此功能。
我有一个文件列表,我想用 ripgrep 搜索模式。
如何才能做到这一点?
使用ripgrep ( rg
),我可以只打印与给定模式匹配的文件名吗?
我正在尝试做两件事:
ag -g pattern
)我不知道如何做任何一个。