confluent completion¶
Description¶
Use this command to print the output shell completion
code for the specified shell (Bash/Zsh only). The shell code must be evaluated to provide
interactive completion of confluent
commands.
- Prerequisites
- The Confluent CLI must be installed.
- Install Bash completions on macOS:
Install Homebrew.
Install Bash completions using
homebrew
:brew install bash-completion
Update your Bash profile for the Confluent CLI:
echo '[[ -r "$(brew --prefix)/etc/profile.d/bash_completion.sh" ]] && . "$(brew --prefix)/etc/profile.d/bash_completion.sh"' >> ~/.bash_profile
Run the following command to install auto completion for the Confluent CLI:
confluent completion bash > $(brew --prefix)/etc/bash_completion.d/confluent
- Install Bash completions on Linux:
Install Bash completion:
sudo apt-get install bash-completion
Set the
confluent completion
code for Bash to a file that’s sourced on login:confluent completion bash > /etc/bash_completion.d/confluent
Load the confluent completion code for Bash into the current shell:
source /etc/bash_completion.d/confluent
Add the source command above to your
~/.bashrc
or~/.bash_profile
to enable completions for new terminals.
- Install Zsh completions:
Zsh looks for completion functions in the directories listed in the
fpath
shell variable.Put the
confluent completion
code for zsh into a file in one the fpath directories, preferably one of the functions directories. eg:confluent completion zsh > ${fpath[1]}/_confluent
Enable Zsh completions:
autoload -U compinit && compinit
Add the autoload command in your
~/.zshrc
to enable completions for new terminals. If you encounter error messages about insecure files, you can resolve by running thechown
command to change the_confluent
file to the sameuser:group
as the other files in${fpath[1]}/
.To update your completion scripts after updating the CLI, run
confluent completion <bash|zsh>
again and overwrite the file initially created above.confluent completion <shell> [flags]
Global Flags¶
-h, --help Show help for this command.
-v, --verbose count Increase verbosity (-v for warn, -vv for info, -vvv for debug, -vvvv for trace).
See Also¶
- Confluent CLI Command Reference - Confluent CLI.