_bcgreek 379 B

123456789101112131415
  1. #compdef bcgreek
  2. _bcgreek() {
  3. local -a args
  4. args=(
  5. '(-s --final-sigma)[automatically convert S into final sigma]'
  6. '(-f --file)'{-x,--string}'[process string]:string'
  7. '(-x --string)'{-f,--file}'[input file]:file:_files'
  8. {-o,--output}'[output file]:file:_files'
  9. '(- *)'{-h,--help}'[help]'
  10. )
  11. _arguments -s ${args}
  12. }