Procurando por uma opção específica em uma página de manual


14

Costumo encontrar manum comando apenas para aprender sobre uma opção específica. Na maioria das vezes, posso pesquisar a opção muito bem, a menos que seja algo como ffmpegou gcconde eu precise percorrer cerca de 40 correspondências até chegar à descrição real da opção ...

Às vezes, posso ter sorte e procurar a palavra "opções" para chegar mais perto e refiná-la a partir daí, mas seria bom se eu pudesse ir com segurança para a opção em questão. Seria legal se houvesse uma ferramenta que pudesse analisar as opções e criar um banco de dados no qual você pudesse fazer pesquisas, mas depois de examinar a marcação groff por algumas páginas, eu determinei que seria apenas um esforço de melhor palpite. devido à falta de meta-informação na marcação groff ... No meu mundo ideal , o modo mulher no emacs apoiaria a pesquisa de opções específicas ... :)

Alguma dica para ir direto para uma opção específica em uma página de manual?

Respostas:


5

Aqui está o meu script para fazer isso. Chama-se ele .

$ he cp    
SYNOPSIS
       cp [OPTION]... [-T] SOURCE DEST
       cp [OPTION]... SOURCE... DIRECTORY
       cp [OPTION]... -t DIRECTORY SOURCE...

$ he gcc -dD
       -dD Dump all macro definitions, at the end of preprocessing, in addition to normal output.

$ he rsync -v
        -v, --verbose               increase verbosity

$ he bash getopts
       getopts optstring name [args]
              getopts is used by shell procedures to parse positional parameters.  optstring contains the option characters to be recognized; if a character is  followed  by  a  colon,  the  option  is
              expected  to  have  an  argument, which should be separated from it by white space.  The colon and question mark characters may not be used as option characters.  Each time it is invoked,
              getopts places the next option in the shell variable name, initializing name if it does not exist, and the index of the next argument to be processed into the variable OPTIND.  OPTIND  is
              initialized  to  1 each time the shell or a shell script is invoked.  When an option requires an argument, getopts places that argument into the variable OPTARG.  The shell does not reset
              OPTIND automatically; it must be manually reset between multiple calls to getopts within the same shell invocation if a new set of parameters is to be used.

              When the end of options is encountered, getopts exits with a return value greater than zero.  OPTIND is set to the index of the first non-option argument, and name is set to ?.

              getopts normally parses the positional parameters, but if more arguments are given in args, getopts parses those instead.

              getopts can report errors in two ways.  If the first character of optstring is a colon, silent error reporting is used.  In normal operation diagnostic messages are printed  when  invalid
              options or missing option arguments are encountered.  If the variable OPTERR is set to 0, no error messages will be displayed, even if the first character of optstring is not a colon.

              If  an  invalid  option  is  seen, getopts places ? into name and, if not silent, prints an error message and unsets OPTARG.  If getopts is silent, the option character found is placed in
              OPTARG and no diagnostic message is printed.

              If a required argument is not found, and getopts is not silent, a question mark (?) is placed in name, OPTARG is unset, and a diagnostic message is printed.  If getopts is silent, then  a
              colon (:) is placed in name and OPTARG is set to the option character found.

              getopts returns true if an option, specified or unspecified, is found.  It returns false if the end of options is encountered or an error occurs.

Mas se você não tiver acesso a um script como esse, basta executar lesse digitar /^ *-option(observe o espaço); por exemplo, na gccpágina de manual, digite /^ *-dDEnterpara encontrar a documentação da -dDopção.

Isso funciona porque a opção geralmente aparece no início da linha.


1
Imagine um homem grande urso barbudo beijando seus dedos por isso!
sepehr

Ha ha! Obrigado! Observe também que renomeei o script para he, como em "ajuda curta". A versão mais recente está no github
Mikel

2

Esta é a função que eu uso. Eu chamo de "homem" para "busca de homem".

mans ()
{
    local pages string;
    if [[ -n $2 ]]; then
        pages=(${@:2});
        string="$1";
    else
        pages=$1;
    fi;
    man ${2:+--pager="less -p \"$string\" -G"} ${pages[@]}
}

Uso:

$ mans ^OPTIONS grep find xargs

Doce! Não é exatamente a solução "ideal" do tipo tabela de pesquisa que eu esperava, mas ainda é muito útil. Obrigado.
mgalgs

1
Conforme observado abaixo, na maioria das vezes o que você está procurando é no início da linha, depois de algum recuo, portanto o padrão geralmente se parece mans '^ *<something>' <page>. Veja minha resposta para mais detalhes.
Mikel
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.