7 lines
204 B
Bash
7 lines
204 B
Bash
|
#compdef ybcon
|
||
|
_ybcon() {
|
||
|
_arguments '-h[Print the help screen]' '--help[Print the help screen]' '--version[Print the version]' '-p[input file]:filename:_path_files -/ -g "*.ybcon"'
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
_ybcon
|