我已经看到在PowerShell中每个变量都使用了$符号。这个符号有什么具体用途吗?
最佳答案
PowerShell变量中的美元符号用于设置/评估该变量的值。
$Variable1 = hello
上面的表达式是通过将变量设置为
hello
来定义变量。在这里,变量名是Variable1
,但是对于$
,它是将Variable1
设置为值hello
。有一些cmdlet可以设置不使用
$
的变量。Set-Variable -Name Variable2 -Value HelloWorld
并获得相同的cmdlet。
Get-Variable -Name Variable2
PS:以上解释仅适用于变量。
关于powershell - 在Powershell中 “$”符号有什么作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57087413/