Small Linux command-line tools for everyday system workflows.
- Bash
- Zsh
kubectltmux
The installer validates these commands but does not install them.
The Kubernetes wrappers call kubectl directly and work with a KUBECONFIG
composed of multiple files.
List contexts:
k8ctxSwitch context:
k8ctx staging-clusterList namespaces in the current context:
k8nsSet the namespace for the current context:
k8ns musicCreate or attach to the default main session:
tmCreate or attach to a named session:
tm musicThe included Zsh completion lists running tmux sessions.
./install.shThe installer creates command symlinks in ~/.local/bin and a Zsh completion
symlink in ~/.local/share/zsh/site-functions. It refuses to overwrite an
unexpected file or symlink.
Make sure the completion directory is in your Zsh fpath before compinit:
fpath=("$HOME/.local/share/zsh/site-functions" $fpath)
autoload -Uz compinit
compinitMIT