1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 14:26:04 +02:00

set: add Chinese translation

This commit is contained in:
Starccy 2019-03-11 20:34:11 +08:00 committed by Starbeamrainbowlabs
parent 1d07ea2b64
commit 12b4433ee0

19
pages.zh/windows/set.md Normal file
View file

@ -0,0 +1,19 @@
# set
> 显示或设置当前命令行实例的环境变量.
- 列出当前所有环境变量:
`set`
- 为一个环境变量设置指定的值:
`set {{变量名}}={{值}}`
- 列出以指定字符串开头的环境变量:
`set {{变量名}}`
- 提示用户输入指定变量的值:
`set /p {{变量名}}={{提示信息}}`