Onde está a documentação detalhada para o comando do build-in do bash?

0

Eu quero saber o significado das opções compgen . Com help compgen posso obter a página de ajuda. Mas mostra apenas as listas de opções. Não há explicação para isso.

compgen: compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word] Display possible completions depending on the options.

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.

Especialmente, quero saber como -abcdefgjksuv arguments funciona.

    
por ironsand 01.09.2013 / 01:11

1 resposta

0

Perto da parte inferior da página man bash é a seção SHELL BUILTIN COMMANDS onde diz

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.

Logo abaixo está o comando complete builtin que explica os switches.

    
por 01.09.2013 / 18:34

Tags