add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

25
pages.zh/common/rgrep.md Normal file
View File

@@ -0,0 +1,25 @@
# rgrep
> 使用正则表达式递归查找文件中的模式。
> 相当于 `grep -r`。
> 更多信息:<https://www.gnu.org/software/grep/manual/grep.html>。
- 在当前工作目录递归搜索模式:
`rgrep "{{search_pattern}}"`
- 在当前工作目录递归搜索不区分大小写的模式:
`rgrep --ignore-case "{{search_pattern}}"`
- 在当前工作目录递归搜索扩展的正则表达式模式(支持 `?``+``{}``()``|`
`rgrep --extended-regexp "{{search_pattern}}"`
- 在当前工作目录递归搜索确切字符串(禁用正则表达式):
`rgrep --fixed-strings "{{exact_string}}"`
- 在指定目录(或文件)递归搜索模式:
`rgrep "{{search_pattern}}" {{path/to/file_or_directory}}`