Files
openclaw-workspace/home-assistant/list-covers.ps1
2026-04-11 09:45:12 -05:00

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 }