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