Skip to main content
Version: v0.0.1 print this page

amorphic_completion

amorphic completion

Generate completion script

Synopsis

To load completions:

Bash:

$ source <(yourprogram completion bash)

To load completions for each session, execute once:

Linux:

$ yourprogram completion bash > /etc/bash_completion.d/yourprogram

macOS:

$ yourprogram completion bash > /usr/local/etc/bash_completion.d/yourprogram

Zsh:

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 for each session, execute once:

$ yourprogram completion zsh > "${fpath[1]}/_yourprogram"

You will need to start a new shell for this setup to take effect.

fish:

$ yourprogram completion fish | source

To load completions for each session, execute once:

$ yourprogram completion fish > ~/.config/fish/completions/yourprogram.fish

PowerShell:

PS> yourprogram completion powershell | Out-String | Invoke-Expression

To load completions for every new session, run:

PS> yourprogram completion powershell > yourprogram.ps1

and source this file from your PowerShell profile.

amorphic completion [bash|zsh|fish|powershell]

Options

  -h, --help   help for completion

Options inherited from parent commands

      --Authorization string   
--base-path string For example: / (default "/")
--config string config file path (default "${HOME}/.config/amorphic/config.yml")
--debug output debug logs
--dry-run do not send the request to server
--hostname string hostname of the service (default "localhost")
--profile string config profile name (default "default")
--scheme string Choose from: [https] (default "https")

SEE ALSO

Auto generated by spf13/cobra on 21-Mar-2022