pages.zh: update outdated pages (#11939)

This commit is contained in:
Sebastiaan Speck
2024-01-01 10:38:53 +01:00
committed by GitHub
parent ef0f5499ad
commit 81ddb70476
59 changed files with 125 additions and 205 deletions

View File

@@ -5,16 +5,16 @@
- 查找包含指定字符串的行:
`find {{字符串}} {{文件或目录的路径}}`
`find "{{字符串}}" {{文件或目录的路径}}`
- 查找不包含指定字符串的行:
`find {{字符串}} {{文件或目录的路径}} /v`
`find "{{字符串}}" {{文件或目录的路径}} /v`
- 显示包含指定字符串的行的总数:
`find {{字符串}} {{文件或目录的路径}} /c`
`find "{{字符串}}" {{文件或目录的路径}} /c`
- 显示匹配的行的行数:
`find {{字符串}} {{文件或目录的路径}} /n`
`find "{{字符串}}" {{文件或目录的路径}} /n`