9 lines
162 B
Bash
Executable file
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")
|