Remove unecessary "echo"

Co-authored-by: Tim Bannister <tim@scalefactory.com>
pull/30662/head
Carlos Domingues 2021-11-29 22:11:31 -03:00 committed by GitHub
parent cde216e2f4
commit 7efe6cb612
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ You now need to ensure that the kubectl completion script gets sourced in all yo
- Add the completion script to the `/etc/bash_completion.d` directory:
```bash
echo -e "$(kubectl completion bash)" | sudo tee /etc/bash_completion.d/kubectl > /dev/null
kubectl completion bash | sudo tee /etc/bash_completion.d/kubectl > /dev/null
```
If you have an alias for kubectl, you can extend shell completion to work with that alias: