gpt4 book ai didi

azure - 谁能解释一下这个 ?{ $_.Virtual Machine -BE $null} 命令在 powershell 中的含义是什么?

转载 作者:行者123 更新时间:2023-12-03 05:20:10 25 4
gpt4 key购买 nike

获取所有网络接口(interface)

$nics = 获取 AzNetworkInterface | ?{ $_.VirtualMachine -NE $null}

我陷入困境?{ $_.VirtualMachine -NE $null} 谁能帮忙?

最佳答案

?Where-Object Cmdlet 的别名。这意味着

$nics = Get-AzNetworkInterface | ?{ $_.VirtualMachine -NE $null}

相当于

$nics = Get-AzNetworkInterface | Where-Object { $_.VirtualMachine -NE $null}

这里Where-Object根据属性值和 $_ is a variable to refer the current item in the collection. 从集合中选择对象

关于azure - 谁能解释一下这个 ?{ $_.Virtual Machine -BE $null} 命令在 powershell 中的含义是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72961382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com