16 lines
405 B
Plaintext
16 lines
405 B
Plaintext
#compdef addpkg
|
|
|
|
# zsh completions for 'addpkg'
|
|
local arguments
|
|
|
|
arguments=(
|
|
{-h,--help}'[show this help message and exit]'
|
|
{-c,--cachedir}'[alternative directory to use for moving package]'
|
|
{-d,--db-filename}'[alternative filename for database without extension]'
|
|
{-s,--sign}'[sign repository file]'
|
|
{-v,--verbose}'[increase script verbosity]'
|
|
'*:filename:_files'
|
|
)
|
|
|
|
_arguments -s $arguments
|