mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 11:42:59 -08:00
12 lines
209 B
Plaintext
12 lines
209 B
Plaintext
#compdef paclog-pkglist
|
|
|
|
declare -a args
|
|
args=(
|
|
'(-)'{--help,-h}'[display help message and exit]'
|
|
'(-)'{--version,-V}'[display version information and exit]'
|
|
|
|
'::pacman log file:_files'
|
|
)
|
|
|
|
_arguments $args
|