Install, remove or print shell completions

## Usage

`circleci completion <command> [flags]`

## Available Commands

| Command     | Description                                      |
| ----------- | ------------------------------------------------ |
| `install`   | Install shell completion into your shell profile |
| `uninstall` | Remove shell completion from your shell profile  |

## Flags

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Details

Manage shell tab-completion for circleci.

Run 'circleci completion install' to add completion to your shell
profile automatically. Supported shells: bash, zsh.

To install manually, add one of the following to your shell profile:

  bash:        source <(circleci completion bash)
  zsh:         source <(circleci completion zsh)
  fish:        circleci completion fish | source
  powershell:  circleci completion powershell | Out-String | Invoke-Expression

PowerShell has no auto-loaded completion directory, so completions must be
registered from your profile. Append the powershell line above to your
$PROFILE to enable them in every session.

