Skip to content

Commit

Permalink
Simplify bash/zsh completion with oc's completion command.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Affolter committed Nov 10, 2016
1 parent 0863541 commit 5208f2a
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions labs/02_cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,17 @@ Ist dies nicht der Fall, ist möglicherweise die PATH Variable nicht korrekt ges

---

## Erweiterte Bash Completion
## bash/zsh completion

Die Bash Completion kann für den oc Command installiert werden. Laden Sie dafür das File von hier [openshift bash completions](https://master.appuio-beta.ch/console/extensions/clients/bash-completion/oc) herunter und installieren Sie es wie folgt:
Mit Linux und Mac kann die bash completion mit folgendem Befehl temporär eingerichtet werden:

```
sudo mv oc /etc/bash_completion.d/
sudo chown root: /etc/bash_completion.d/oc
sudo chmod g-w /etc/bash_completion.d/oc
source <(oc completion bash)
```

Oder für zsh:
```
source <(oc completion zsh)
```

---
Expand Down

0 comments on commit 5208f2a

Please sign in to comment.