1
0
mirror of https://github.com/ViViDboarder/vim-settings.git synced 2025-01-07 08:07:36 +00:00
vim-settings/scripts/sort-json.sh
2022-02-28 16:31:56 -08:00

8 lines
130 B
Bash
Executable File

#! /usr/bin/env bash
set -e
for f in "$@"; do
jq --sort-keys --monochrome-output . "$f" > "$f.tmp"
mv "$f.tmp" "$f"
done