Provided by: zsys_0.5.9ubuntu0.22.04.1_amd64
NAME
zsysd-completion - Generates completion scripts (will attempt to automatically detect shell)
SYNOPSIS
zsysd completion [bash|zsh|powershell] [flags]
DESCRIPTION
To load completions: NOTE: When shell type isn't defined shell will be automatically identified based on the $SHELL environment vairable Bash: $ source <(zsysd completion bash) # To load completions for each session, execute once: # Linux: $ zsysd completion bash > /etc/bash_completion.d/zsysd # macOS: $ zsysd completion bash > /usr/local/etc/bash_completion.d/zsysd 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: $ zsysd completion zsh > "${fpath[1]}/_zsysd" # You will need to start a new shell for this setup to take effect. PowerShell: PS> zsysd completion powershell | Out-String | Invoke-Expression # To load completions for every new session, run: PS> zsysd completion powershell > zsysd.ps1 # and source this file from your PowerShell profile.
OPTIONS
-h, --help[=false] help for completion
OPTIONS INHERITED FROM PARENT COMMANDS
-v, --verbose[=0] issue INFO (-v) and DEBUG (-vv) output
SEE ALSO
zsysd(1)
HISTORY
27-Apr-2023 Auto generated by spf13/cobra