blob: bcee4042b7bf71b833573971f3a1509aa2edb132 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#compdef dumper dumper.exe
#Generated by Felix Rosencrantz
local context state line
typeset -A opt_args
_arguments \
'(--verbose -d)'{-d,--verbose}'[be verbose while dumping]' \
'(--help -h)'{-h,--help}'[output help information and exit]' \
'(--quiet -q)'{-q,--quiet}'[be quiet while dumping (default)]' \
'(--version -v)'{-v,--version}'[output version information and exit]' \
'1: :_file' \
'*: :_pids'
|