mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
13 lines
508 B
Text
13 lines
508 B
Text
#compdef iconvconfig
|
|
|
|
local exargs="-? --help --usage -V --version"
|
|
|
|
_arguments -S -s \
|
|
"($exargs)--nostdlib[do not search system directory]" \
|
|
"(-o --output $exargs)"{-o+,--output=}'[specify output file]:output file:_files' \
|
|
"($exargs)--prefix=[specify system dir prefix]:prefix:_files" \
|
|
'(- *)'{-\?,--help}'[display help information]' \
|
|
'(- *)--usage[display a short usage message]' \
|
|
'(- *)'{-V,--version}'[print program version]' \
|
|
'*:directory:_files -/' \
|
|
&& return 0
|