explorer, rmdir, winget: add traditional Chinese translation (#8765)

pull/1/head
Poy Chang 2022-10-09 00:06:17 +08:00 committed by GitHub
parent 9c1754e077
commit 155864b33e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# explorer
> Windows 檔案總管。
> 更多資訊:<https://ss64.com/nt/explorer.html>.
- 打開 Windows 檔案總管:
`explorer`
- 在當前目錄打開 Windows 檔案總管:
`explorer .`
- 在指定目錄打開 Windows 檔案總管:
`explorer {{目錄/完整/路徑}}`

View File

@ -0,0 +1,16 @@
# rmdir
> 刪除一個目錄和裡面的內容。
> 更多資訊:<https://learn.microsoft.com/windows-server/administration/windows-commands/rmdir>.
- 刪除一個空目錄:
`rmdir {{目錄/完整/路徑}}`
- 遞迴刪除一個目錄和裡面的內容:
`rmdir {{目錄/完整/路徑}} /s`
- 在沒有提示的情況下遞迴刪除目錄和裡面的內容:
`rmdir {{目錄/完整/路徑}} /s /q`

View File

@ -0,0 +1,16 @@
# winget
> Windows 套件管理員的命令列工具。
> 更多資訊:<https://learn.microsoft.com/windows/package-manager/winget>.
- 安裝一個套件:
`winget install {{套件}}`
- 顯示指定套件的相關資訊:
`winget show {{套件}}`
- 搜尋指定套件:
`winget search {{套件}}`