mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-19 11:08:11 +01:00
6 lines
154 B
Bash
6 lines
154 B
Bash
#!/bin/bash
|
|
|
|
for files in */*.json; do
|
|
/./c/Tmp/jq-win64.exe --sort-keys . "$files" > config2.json && cat config2.json > "$files" && rm config2.json
|
|
done
|