выбрать после select только определенные значения поля
Код:
PS C:\Windows\system32> Get-VM | where {($_.name -like "*gz*") -and ($_.name -notlike "*test*")} | select name, {$_.gues |
| select name, @{n="IP";e= {$_.guest.ipaddress | ? {$_ -match "192.168"}}}
|
Спасибо. Вы не могли бы объяснить на пальцах как это работает?
@ я так понял объявление массива, но дальше не понимаю что происходит, почему 2 поля данных n и e? |
Get-Help Select-Object
-Property [<Object[]>] Specifies the properties to select. Wildcards are permitted. The value of the Property parameter can be a new calculated property. To create a calculated, property, use a hash table. Valid keys are: -- Name (or Label) <string> -- Expression <string> or <script block> Required? false Position? 1 Default value none Accept pipeline input? false Accept wildcard characters? false |
Время: 22:33. |
Время: 22:33.
© OSzone.net 2001-