Enable CLI command completion
Completion allows you to hit [TAB] on a partially entered akka command and have the shell complete the command, subcommand or flag for you.
- bash
 - 
To load completion in the current bash shell run:
source <(akka completion)Configure bash to load
akkacompletions for each session by adding the following line to your~/.bashrcor~/.profilefile:# add to ~/.bashrc or ~/.profile source <(akka completion)Using bash completions with
akkarequires you have bash completions enabled to begin with. Enable it in your~/.bashrcor~/.profilefile with the following lines:if [ -f /etc/bash_completion ]; then source /etc/bash_completion fiFor definitive details on setting up your shell with auto-completion, see the shell documentation.
 - zsh (e.g. macOS)
 - 
To set up
zshshell completion run:akka completion zsh > "${fpath[1]}/_akka" compinitIf shell completion is not already enabled in your environment execute the following:
echo "autoload -U compinit; compinit" >> ~/.zshrc - fish
 - 
To set up fish shell completion run:
akka completion fish > ~/.config/fish/completions/akka.fish source ~/.config/fish/completions/akka.fish - PowerShell
 - 
To set up shell completion for PowerShell run:
akka completion powershell | Out-String | Invoke-Expression