From c287801a5b199bcfcd34d7d6641c0a7f67222d55 Mon Sep 17 00:00:00 2001 From: Denis Salamanca <33235720+dsalamancaMS@users.noreply.github.com> Date: Sun, 10 Jun 2018 22:12:25 -0600 Subject: [PATCH] changed to reload .bashrc Changed from spawning a new shell to reloading .bashrc --- docs/02-client-tools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-client-tools.md b/docs/02-client-tools.md index d23605c..7699d2f 100644 --- a/docs/02-client-tools.md +++ b/docs/02-client-tools.md @@ -102,7 +102,7 @@ sudo mv kubectl /usr/local/bin/ The following steps will enable shell tab completion on kubectl while using bash: ``` -echo "source <(kubectl completion bash)" >> ~/.bashrc && bash +echo "source <(kubectl completion bash)" >> ~/.bashrc && .~/.bashrc ``` >You can also omit the "&& bash" and reload the shell later. >This will only enable tab completion for your current user.