vim-settings/scripts/sort-json.sh

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