File: _iconvconfig

package info (click to toggle)
zsh 5.9-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 22,872 kB
  • sloc: ansic: 108,165; sh: 6,987; makefile: 722; perl: 687; awk: 291; sed: 16
file content (13 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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