> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kombify.io/llms.txt
> Use this file to discover all available pages before exploring further.

# stackkit completion

> Generate shell completion scripts

Generate shell completion scripts.

Generate shell completion scripts for stackkit.

To load completions:

```text theme={null}
Bash:
  $ source <(stackkit completion bash)
```

```text theme={null}
  # To load completions for each session, execute once:
  # Linux:
  $ stackkit completion bash > /etc/bash_completion.d/stackkit
  # macOS:
  $ stackkit completion bash > $(brew --prefix)/etc/bash_completion.d/stackkit
```

```text theme={null}
Zsh:
  # If shell completion is not already enabled in your environment,
  # you will need to enable it. Execute once:
  $ echo "autoload -U compinit; compinit" >> ~/.zshrc
```

```text theme={null}
  # To load completions for each session, execute once:
  $ stackkit completion zsh > "${fpath[1]}/_stackkit"
```

```text theme={null}
  # You will need to start a new shell for this to take effect.
```

```text theme={null}
Fish:
  $ stackkit completion fish | source
```

```text theme={null}
  # To load completions for each session, execute once:
  $ stackkit completion fish > ~/.config/fish/completions/stackkit.fish
```

```text theme={null}
PowerShell:
  PS> stackkit completion powershell | Out-String | Invoke-Expression
```

```text theme={null}
  # To load completions for each session, execute once and source this file
  # from your PowerShell profile.
  PS> stackkit completion powershell > stackkit.ps1
```

```bash theme={null}
stackkit completion [bash|zsh|fish|powershell]
```
