add new chinese translations
This commit is contained in:
@@ -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}}`
|
Reference in New Issue
Block a user