From 52f14d747d952de538b0d4e9d09a7a525c5a0c50 Mon Sep 17 00:00:00 2001 From: Denis Salamanca <33235720+dsalamancaMS@users.noreply.github.com> Date: Mon, 11 Jun 2018 10:13:29 -0600 Subject: [PATCH] added missing space on ". ~/.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 7699d2f..0f28669 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 && .~/.bashrc +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.