mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-01 12:16:33 +00:00
8 lines
130 B
Bash
Executable File
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
|