set: add traditional Chinese translation (#8544)

pull/1/head
Poy Chang 2022-10-03 03:30:01 +08:00 committed by GitHub
parent db5ef72899
commit 7d0058f18a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# set
> 顯示或設定當前 CMD 執行個體的環境變數。
> 更多資訊:<https://learn.microsoft.com/windows-server/administration/windows-commands/set>.
- 列出當前所有環境變數:
`set`
- 為一個環境變數設定指定的值:
`set {{變數名}}={{值}}`
- 列出以指定字串開頭的環境變數:
`set {{變數名}}`
- 提示使用者輸入指定變數的值:
`set /p {{變數名}}={{使用提示字串}}`