blob: db61f438d838abe698917050b8bad54f9b32d4ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#compdef putclip putclip.exe
#Generated by Felix Rosencrantz
local context state line
typeset -A opt_args
_arguments \
'(--dos -d)'{-d,--dos}'[Clipboard text will have DOS line endings.]' \
'(--unix -u)'{-u,--unix}'[Clipboard 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]'
|