mirror of
https://github.com/bvanroll/my-old-dotfiles.git
synced 2025-08-29 20:12:42 +00:00
6 lines
177 B
Plaintext
Executable File
6 lines
177 B
Plaintext
Executable File
echo "listing kubeconfigs for user $USER :\n"
|
|
ls -1 $HOME/.kube/configs
|
|
echo "\nplease select one of the configs above:"
|
|
read con
|
|
cp $HOME/.kube/configs/$con $HOME/.kube/config
|