1

我正在尝试在需要的powershell中进行编码,我将变量的值用作变量本身;有正确的语法吗?

这是示例;

$color = "red"
$red = 1

how can i obtain the value of 1? $($color) $"$color" etc give out the errors.

如果需要,我可以解释更多关于我正在处理的问题。

4

1 回答 1

4

语法不是很简洁,但您可以使用Get-Variablecmdlet

Get-Variable -Name $color -ValueOnly

……或者干脆……

gv $color -ValueOnly
于 2012-12-13T16:03:28.983 回答