mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 17:33:38 +02:00
find: add Chinese translation
This commit is contained in:
parent
1a0de12cd8
commit
fc30480559
1 changed files with 19 additions and 0 deletions
19
pages.zh/windows/find.md
Normal file
19
pages.zh/windows/find.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# find
|
||||
|
||||
> 在一个或多个文件里查找指定字符串.
|
||||
|
||||
- 查找包含指定字符串的行:
|
||||
|
||||
`find {{字符串}} {{文件或目录的路径}}`
|
||||
|
||||
- 查找不包含指定字符串的行:
|
||||
|
||||
`find {{字符串}} {{文件或目录的路径}} /v`
|
||||
|
||||
- 显示包含指定字符串的行的总数:
|
||||
|
||||
`find {{字符串}} {{文件或目录的路径}} /c`
|
||||
|
||||
- 显示匹配的行的行数:
|
||||
|
||||
`find {{字符串}} {{文件或目录的路径}} /n`
|
Loading…
Add table
Reference in a new issue