[en] Update Bash alias auto-completion

This commit is contained in:
Martin Tovmassian
2022-03-08 16:54:48 +01:00
parent ad6c53947a
commit d05fb625f4
3 changed files with 3 additions and 3 deletions
@@ -43,7 +43,7 @@ If you have an alias for kubectl, you can extend shell completion to work with t
```bash
echo 'alias k=kubectl' >>~/.bashrc
echo 'complete -F __start_kubectl k' >>~/.bashrc
echo 'complete -o default -F __start_kubectl k' >>~/.bashrc
```
{{< note >}}