📜  powershell 添加到环境路径 - Shell-Bash 代码示例
📅  最后修改于: 2022-03-11 14:50:39.542000             🧑  作者: Mango
代码示例1
$env:Path = "SomeRandomPath"; (replaces existing path)
$env:Path += ";SomeRandomPath" (appends to existing path)