¿Dónde está la documentación detallada para el comando bash build-in?

0

Quiero saber el significado de compgen opciones Con help compgen Puedo obtener la página de ayuda. Pero solo muestra las listas de opciones. No hay explicación para ello.

compgen: compgen [-abcdefgjksuv] [-o opción] [-A acción] [-G globpat]   [-W lista de palabras] [-F función] [-C comando] [-X filterpat] [-P prefijo]   [-S sufijo] [palabra]       Mostrar posibles terminaciones en función de las opciones.

Intended to be used from within a shell function generating possible
completions.  If the optional WORD argument is supplied, matches against
WORD are generated.

Exit Status:
Returns success unless an invalid option is supplied or an error occurs.

Sobre todo quiero saber como -abcdefgjksuv los argumentos funcionan.

ironsand
fuente

Respuestas:

0

Cerca de la parte inferior de la página de manual de bash se encuentra la sección COMANDOS DE SHELL BUILTIN donde dice

compgen [option] [word]
          Generate  possible  completion  matches  for  word according to the
          options, which may be any option accepted by the  complete  builtin
          with the exception of -p and -r, and write the matches to the stan-
          dard output.  When using the -F or -C options,  the  various  shell
          variables  set  by  the  programmable  completion facilities, while
          available, will not have useful values.

          The matches will be generated in  the  same  way  as  if  the  pro-
          grammable  completion  code had generated them directly from a com-
          pletion specification with the same flags.  If word  is  specified,
          only those completions matching word will be displayed.

          The  return  value is true unless an invalid option is supplied, or
          no matches were generated.

Justo debajo está el complete comando incorporado que explica los interruptores.

dwhitmarsh
fuente