| Server IP : 74.208.236.52 / Your IP : 216.73.216.240 Web Server : Apache System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64 User : u44043973 ( 5404757) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /kunden/usr/share/zsh/functions/Completion/Debian/ |
Upload File : |
#compdef dscverify
# $ dscverify --version
# This is dscverify, from the Debian devscripts package, version 2.20.2
# ...
_dscverify() {
local all_opts=(
'--help[show the help message and exit]'
'--version[show the version + copyright and exit]'
'--no-default-keyrings[do not check against the default keyrings]'
'*--keyring[add keyring to the list of keyrings used]:keyring:_files -g "*.{kbx,gpg}(-.)"'
'(--nosigcheck --no-sig-check -u)'{--nosigcheck,--no-sig-check,-u}'[do not verify the GPG signature]'
'--verbose[do not suppress GPG output]'
'*:dsc file:_files -g "*.{changes,dsc,buildinfo}(-.)"'
)
local first_only=(
'(--no-conf --noconf)'{--no-conf,--noconf}'[do not read the devscripts config file]'
)
if (( CURRENT == 2 )); then
all_opts+=($first_only)
fi
_arguments \
"$all_opts[@]"
}
_dscverify "$@"
#compdef dscverify
# $ dscverify --version
# This is dscverify, from the Debian devscripts package, version 2.20.2
# ...
local all_opts=(
'--help[show the help message and exit]'
'--version[show the version + copyright and exit]'
'--no-default-keyrings[do not check against the default keyrings]'
'*--keyring[add keyring to the list of keyrings used]:keyring:_files -g "*.(kbx|gpg)(-.)"'
'(--nosigcheck --no-sig-check -u)'{--nosigcheck,--no-sig-check,-u}"[don't verify the GPG signature]"
"--verbose[don't suppress GPG output]"
'*:dsc file:_files -g "*.(changes|dsc|buildinfo)(-.)"'
)
local first_only=(
'(--no-conf --noconf)'{--no-conf,--noconf}"[don't read the devscripts config file]"
)
if (( CURRENT == 2 )); then
all_opts+=( $first_only )
fi
_arguments \
"$all_opts[@]"