3 lines
163 B
PowerShell
3 lines
163 B
PowerShell
$data = Get-Content covers.json -Raw | ConvertFrom-Json
|
|
$covers = $data | Where-Object { $_.entity_id -match '^cover\.' }
|
|
$covers | ForEach-Object { $_.entity_id } |