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,20 +1,20 @@
# find
# 查找
> 一个或多个文件查找指定字符串。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/find>.
> 在文件查找指定字符串。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/find>
- 查找包含指定字符串的行:
`find "{{字符串}}" {{文件或目录的路径}}`
`find "{{string}}" {{path\to\file_or_directory}}`
- 查找不包含指定字符串的行:
- 显示不包含指定字符串的行:
`find "{{字符串}}" {{文件或目录的路径}} /v`
`find "{{string}}" {{path\to\file_or_directory}} /v`
- 显示包含指定字符串的行的总数:
- 显示包含指定字符串的行数:
`find "{{字符串}}" {{文件或目录的路径}} /c`
`find "{{string}}" {{path\to\file_or_directory}} /c`
- 显示匹配的行的行数
- 显示包含行号的行列表
`find "{{字符串}}" {{文件或目录的路径}} /n`
`find "{{string}}" {{path\to\file_or_directory}} /n`