Skip to content

Completion

caepe 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.

caepe completion [bash|zsh|fish|powershell]

Options

  -h, --help   help for completion

Options inherited from parent commands

      --config string         config file path (default /$HOME/.caepe/config)
      --debug                 output debug logs
      --dry-run               do not send the request to server
      --hostname string       hostname of caepe. (required)
      --organization string   organization to interact with. (required)
      --raw-output            show raw output
      --scheme string         Choose from: [https http] (default "https")
      --skip-tls              ignore tls certificate verification

SEE ALSO

  • caepe - CLI to interact with CAEPE application
Auto generated by spf13/cobra on 31-Mar-2023

Last update: 2023-04-19
Back to top