Rename .tools/sortjson.sh to .templates/sortjson.sh

This commit is contained in:
Alexandre
2022-03-15 12:52:24 +01:00
committed by GitHub
parent 8494603115
commit bffc4d2a89

5
.templates/sortjson.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/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