While programming for HDInsight I came across lines like
$storageAccountKey = Get-AzureRmStorageAccountKey
-ResourceGroupName $resourceGroupName
-Name $storageAccountName
| %{ $_.Key1 }
I understand $_
refers to the result of the Get-AzureRmStorageAccountKey
command. But what exactly is the meaning of %{}
?