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

# completion

> Generate a shell completion script for the Entire CLI.

Generate the autocompletion script for `entire` for the specified shell.

```bash theme={null}
entire completion SHELL
```

| Shell      | Command                        |
| ---------- | ------------------------------ |
| Bash       | `entire completion bash`       |
| Zsh        | `entire completion zsh`        |
| Fish       | `entire completion fish`       |
| PowerShell | `entire completion powershell` |

Each subcommand prints a script to stdout. Run `entire completion SHELL --help` for the shell-specific instructions on where to load it. For Bash and Zsh, the quickest option is to source it from your shell profile:

```bash theme={null}
source <(entire completion zsh)
```

See [Shell Completion](/installation#shell-completion) in the installation guide for profile snippets.

## Continue With

<CardGroup cols={2}>
  <Card title="Installation" icon="download" href="/installation">
    Install and update the Entire CLI.
  </Card>

  <Card title="Global Flags" icon="flag" href="/cli-reference/global-flags">
    Flags every command accepts.
  </Card>
</CardGroup>
