Closed pschmitt closed 1 year ago
I've been hitting ARG_MAX while editing my Lovelace dashboard with the following:
ARG_MAX
hass-cli raw ws lovelace/config/save --json=<VERY_LONG_JSON>
This PR allows reading it from stdin, as in:
printf '%s' <VERY_LONG_JSON> | hass-cli raw ws lovelace/config/save --json=-
Both still work, the latter just allows reading more data.
I've been hitting
ARG_MAX
while editing my Lovelace dashboard with the following:This PR allows reading it from stdin, as in:
Both still work, the latter just allows reading more data.