blob: 0cb7b093fc19c5e525353eff51d5ede7c9068225 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#compdef getclip getclip.exe
#Generated by Felix Rosencrantz
local context state line
typeset -A opt_args
_arguments \
'(--dos -d)'{-d,--dos}'[Output text will have DOS line endings.]' \
'(--unix -u)'{-u,--unix}'[Output text will have UNIX line endings.]' \
'(--help -?)'{'-?',--help}'[Show this help message]' \
'--usage[Display brief usage message]' \
'--version[Display version information]' \
'--license[Display licensing information]'
|