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

View File

@@ -1,24 +1,24 @@
# pdfgrep
> PDF 文件中搜索文本。
> 更多信息:<https://pdfgrep.org>.
> 在PDF文件中搜索文本。
> 更多信息:<https://pdfgrep.org>
- PDF 中查找与关键词匹配的行:
- 在PDF中查找与模式匹配的行:
`pdfgrep {{关键词}} {{文件.pdf}}`
`pdfgrep {{pattern}} {{file.pdf}}`
- 包含每个匹配的文件名和页码:
- 每个匹配的行包含文件名和页码:
`pdfgrep --with-filename --page-number {{关键词}} {{文件.pdf}}`
`pdfgrep --with-filename --page-number {{pattern}} {{file.pdf}}`
- 对以 "foo" 开头关键词搜索,返回前 3 个匹配项,不区分大小写
- 对以foo”开头的行进行不区分大小写的搜索,返回前3个匹配
`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{文件.pdf}}`
`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{file.pdf}}`
- 在当前目录中扩展名为.pdf 的文件中递归查找关键词
- 在当前目录中递归查找扩展名为`.pdf`的文件中的模式
`pdfgrep --recursive {{关键词}}`
`pdfgrep --recursive {{pattern}}`
-当前目录中特定文件名 "*book.pdf" 匹配的文件上递归查找关键词
- 在当前目录中递归查找与特定通配符匹配的文件中的模式
`pdfgrep --recursive --include {{'*book.pdf'}} {{关键词}}`
`pdfgrep --recursive --include {{'*book.pdf'}} {{pattern}}`