mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:02:09 +02:00
cls, find: add traditional Chinese translation (#7244)
This commit is contained in:
parent
f4c718e2b6
commit
57e2f62851
2 changed files with 28 additions and 0 deletions
8
pages.zh_TW/windows/cls.md
Normal file
8
pages.zh_TW/windows/cls.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# cls
|
||||
|
||||
> 清除命令提示字元中的輸出文字。
|
||||
> 更多資訊:<https://docs.microsoft.com/windows-server/administration/windows-commands/cls>.
|
||||
|
||||
- 清除輸出:
|
||||
|
||||
`cls`
|
20
pages.zh_TW/windows/find.md
Normal file
20
pages.zh_TW/windows/find.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# find
|
||||
|
||||
> 在一個或多個文件中查詢指定字串。
|
||||
> 更多資訊:<https://docs.microsoft.com/windows-server/administration/windows-commands/find>.
|
||||
|
||||
- 查詢包含指定字串的行:
|
||||
|
||||
`find {{字串}} {{檔案或目錄/完整/路徑}}`
|
||||
|
||||
- 查詢不包含指定字串的行:
|
||||
|
||||
`find {{字串}} {{檔案或目錄/完整/路徑}} /v`
|
||||
|
||||
- 顯示包含指定字串的行總數:
|
||||
|
||||
`find {{字串}} {{檔案或目錄/完整/路徑}} /c`
|
||||
|
||||
- 顯示符合的行號:
|
||||
|
||||
`find {{字串}} {{檔案或目錄/完整/路徑}} /n`
|
Loading…
Add table
Reference in a new issue