mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-03 07:40:52 +02:00
6 lines
135 B
Bash
6 lines
135 B
Bash
#!/bin/bash
|
|
|
|
for files in */*.json; do
|
|
jq --sort-keys . "$files" > config2.json && cat config2.json > "$files" && rm config2.json
|
|
done
|