dotfiles/.bin/vim-fold-k8s-manifest.sh
2026-01-05 15:00:16 -03:00

9 lines
217 B
Bash
Executable file

#!/bin/sh
# this script is slow on large yamls
# TODO: rewrite in vimscript
file=$1
line1=$2
line2=$3
awk 'NR>'$line1' && /kind:/ {printf "%s/", $2}; NR>'$line1' && /name: / {$1=""; printf "%s", $0; exit 0}' <$file