docs/static/v0.8/reference/mesheryctl/completion/index.html
Generate shell completion scripts
Output shell completion code
mesheryctl completion [bash|zsh|fish]
source /dev/stdin \<\<\< "$(mesheryctl completion bash)"
bash <= 3.2 on osx ensure you have bash-completion 1.3+
brew install bash-completion
mesheryctl completion bash \> $(brew --prefix)/etc/bash\_completion.d/mesheryctl
source \<(mesheryctl completion bash)
bash >= 4.0 on osx
brew install bash-completion@2
mesheryctl completion bash \> $(brew --prefix)/etc/bash\_completion.d/mesheryctl
If shell completion is not already enabled in your environment you will need to enable it. You can execute the following once: Might need to start a new shell for this setup to take effect.
$ echo "autoload -U compinit; compinit" \>\> ~/.zshrc
source \<(mesheryctl completion zsh)
zsh on osx / oh-my-zsh
COMPLETION\_DIR=$(echo $fpath | grep -o '[^]\*completions' | grep -v cache) && mkdir -p $COMPLETION\_DIR && mesheryctl completion zsh \> "${COMPLETION\_DIR}/\_mesheryctl"
mesheryctl completion fish | source
To load fish shell completions for each session, execute once:
mesheryctl completion fish \> ~/.config/fish/completions/mesheryctl.fish
-h, --help help for completion
--config string path to config file (default "/home/runner/.meshery/config.yaml") -v, --verbose verbose output
Go back to command reference index, if you want to add content manually to the CLI documentation, please refer to the instruction for guidance.