website/docs/cli-reference/completion.md
Generated from bd help --doc completion
Generate the autocompletion script for bd for the specified shell. See each sub-command's help for details on how to use the generated script.
bd completion
Generate the autocompletion script for the bash shell.
This script depends on the 'bash-completion' package. If it is not installed already, you can install it via your OS's package manager.
To load completions in your current shell session:
source <(bd completion bash)
To load completions for every new session, execute once:
bd completion bash > /etc/bash_completion.d/bd
bd completion bash > $(brew --prefix)/etc/bash_completion.d/bd
You will need to start a new shell for this setup to take effect.
bd completion bash
Flags:
--no-descriptions disable completion descriptions
Generate the autocompletion script for the fish shell.
To load completions in your current shell session:
bd completion fish | source
To load completions for every new session, execute once:
bd completion fish > ~/.config/fish/completions/bd.fish
You will need to start a new shell for this setup to take effect.
bd completion fish [flags]
Flags:
--no-descriptions disable completion descriptions
Generate the autocompletion script for powershell.
To load completions in your current shell session:
bd completion powershell | Out-String | Invoke-Expression
To load completions for every new session, add the output of the above command to your powershell profile.
bd completion powershell [flags]
Flags:
--no-descriptions disable completion descriptions
Generate the autocompletion script for the zsh shell.
If shell completion is not already enabled in your environment you will need to enable it. You can execute the following once:
echo "autoload -U compinit; compinit" >> ~/.zshrc
To load completions in your current shell session:
source <(bd completion zsh)
To load completions for every new session, execute once:
bd completion zsh > "${fpath[1]}/_bd"
bd completion zsh > $(brew --prefix)/share/zsh/site-functions/_bd
You will need to start a new shell for this setup to take effect.
bd completion zsh [flags]
Flags:
--no-descriptions disable completion descriptions