我正在尝试在需要的powershell中进行编码,我将变量的值用作变量本身;有正确的语法吗?
这是示例;
$color = "red"
$red = 1
how can i obtain the value of 1? $($color) $"$color" etc give out the errors.
如果需要,我可以解释更多关于我正在处理的问题。
我正在尝试在需要的powershell中进行编码,我将变量的值用作变量本身;有正确的语法吗?
这是示例;
$color = "red"
$red = 1
how can i obtain the value of 1? $($color) $"$color" etc give out the errors.
如果需要,我可以解释更多关于我正在处理的问题。
语法不是很简洁,但您可以使用Get-Variable
cmdlet:
Get-Variable -Name $color -ValueOnly
……或者干脆……
gv $color -ValueOnly