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

14

Muitas vezes me encontro com man 'um comando apenas para aprender sobre uma opção específica. Na maioria das vezes eu posso procurar a opção muito bem, a menos que seja algo como ffmpeg ou gcc , onde eu tenho que passar por cerca de 40 partidas até chegar à descrição real da opção ...

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

Alguma dica para saltar diretamente para uma opção específica em uma página man?

    
por mgalgs 04.03.2011 / 06:33

2 respostas

5

Aqui está 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, execute less e digite /^ *-option (observe o espaço), por exemplo, na página gcc man, digite /^ *-dD < kbd> Digite para encontrar a documentação para a opção -dD .

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

    
por 04.03.2011 / 09:26
2

Esta é a função que eu uso. Eu chamo de "mans" para "man search".

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
    
por 04.03.2011 / 06:53

Tags