gpt4 book ai didi

powershell - %{ $_.Key1 } 是什么意思?

转载 作者:行者123 更新时间:2023-12-04 01:33:21 25 4
gpt4 key购买 nike

在为 HDInsight 编程时,我遇到了像

$storageAccountKey = Get-AzureRmStorageAccountKey 
-ResourceGroupName $resourceGroupName
-Name $storageAccountName
| %{ $_.Key1 }

我明白 $_指的是 Get-AzureRmStorageAccountKey 的结果命令。但是 %{}究竟是什么意思? ?

最佳答案

%{ $_.Key1 }ForEach-Object { Write-Output $_.Key1 } ⇔ 对于管道中的每个对象,回显其属性的值 Key1 .
%alias ForEach-Object . $_是当前对象 automatic variable .

关于powershell - %{ $_.Key1 } 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35272003/

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