nix/scripts/bin/k8s-yaml-diff
2023-09-05 15:15:43 -05:00

9 lines
162 B
Bash
Executable file

#!/usr/bin/env bash
[ "$#" -lt 2 ] && echo "Need two filenames." && exit 1
f1="$1"; shift
f2="$1"; shift
nvim -d <(k8s-yaml-sort "$f1") <(k8s-yaml-sort "$f2")