如何在PowerShell中修改本地可执行搜索路径?

时间:2015-12-09 18:57:55

标签: powershell environment-variables

我想修改本地PowerShell环境中的路径。在命令行,我使用:

x = c(1,2,3,4)

prob = c(0.1,0.2,0.3,0.4)

# Total sample size
n = 20

result = rep(x, round(n * prob))

[1] 1 1 2 2 2 2 3 3 3 3 3 3 4 4 4 4 4 4 4 4

但是我无法弄清楚如何在powershell环境中做同样的事情。想法?

1 个答案:

答案 0 :(得分:0)

%PATH%是变量的批处理表示法。在PowerShell中,您需要使用$env:Path

$env:Path = "$env:Path;something"

$env:Path += ';something'