Skip to content

Instantly share code, notes, and snippets.

@sombriks
Created August 1, 2024 21:29
Show Gist options
  • Save sombriks/7650e18cb68f6d4230fbaa20d5760eac to your computer and use it in GitHub Desktop.
Save sombriks/7650e18cb68f6d4230fbaa20d5760eac to your computer and use it in GitHub Desktop.
completion scripts for your .bashrc
# completion tools to add into .bashrc
source <(k0s completion bash)
source <(kind completion bash)
source <(helm completion bash)
source <(argocd completion bash)
source <(kubectl completion bash)
source <(npm completion)
source <(gh completion -s bash)
complete -C '/usr/local/bin/aws_completer' aws
# bonus
# https://tldp.org/LDP/abs/html/intandnonint.html
case $- in
*i*)
fortune
;;
esac
export PATH="$PATH:$HOME/go/bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment