You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
259 B
Bash

#!/usr/bin/env bash
x.getall() {
_filter "$@" && return $?
for i in "$@"; do
k get all -n "$i" > "$i".yaml 2>&1
done
}
_filter(){
[[ -n "$1" ]] && return 1
while IFS= read -ra args; do
"${FUNCNAME[1]}" "${args[@]}"
done
}
x.getall "$@"