mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
9 lines
172 B
Bash
9 lines
172 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
|
||
|
|
for file in ./lang/*.json; do
|
||
|
|
echo "Sorting and standardizing ${file}"
|
||
|
|
t=$(mktemp)
|
||
|
|
jq --indent 4 -S "." "${file}" > "${t}"
|
||
|
|
mv "${t}" "${file}"
|
||
|
|
done
|