1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-29 22:29:26 +00:00

[.zshrc] Use sh as default for kexec alias

This commit is contained in:
2025-06-29 12:08:29 +02:00
parent 38df9487b6
commit 9b3a40dee7

2
.zshrc
View File

@ -82,7 +82,7 @@ kexec () {
local cmd=("$@")
if [ -z "$1" ]; then
cmd=(bash)
cmd=(sh)
fi
cid=$(kubectl get pods | sed 1d | fzf -1 | awk '{print $1}')