#!/bin/sh
host=$(grep -i name ~/.kube/config | head -n 1| awk '{ print $3 }' | sed -e 's#"# #g' | sed -e 's# ##g')
while :; echo -n "kub@$host# "; read print; do kubectl $print; done
