在powershell中为valiable赋值

时间:2018-01-28 01:42:07

标签: powershell

此脚本是较大脚本的一部分。 我需要基于计数器生成变量,然后为该变量赋值。所以在这种情况下,我需要为List_0分配24。

$CountOutFile = 0
$("List_" + $CountOutFile) = 24

任何想法都会非常感激。

1 个答案:

答案 0 :(得分:1)

我怀疑@TessellatingHeckler是正确的,但如果你真的想要生成一个具有该名称的变量,那么使用new-variable cmdlet很容易。此外,使用插值更容易连接...

New-Variable -Name "List_$CountOutFile" -value 24

如果您需要添加到现有变量,您可以执行以下操作:

$val=Get-Variable -Name "List_$CountOutFile" -ValueOnly
Set-Variable -Name "List_$CountOutFile" -value $val+$LineinFile