mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 12:23:15 -08:00
13 lines
258 B
Plaintext
13 lines
258 B
Plaintext
#compdef updpkgsums
|
|
|
|
declare -a args
|
|
args=(
|
|
'(--nocolor -m)'{--nocolor,-m}'[do not colorize output]'
|
|
'(-)'{--help,-h}'[display help message and exit]'
|
|
'(-)'{--version,-V}'[display version information and exit]'
|
|
|
|
'::build file:_files'
|
|
)
|
|
|
|
_arguments $args
|