Bir kılavuz sayfasında belirli bir seçeneği arama


14

Sık sık kendime mansadece belirli bir seçeneği öğrenmek için bir komut buluyorum . Çoğu zaman, sadece iyi seçeneğe arama yapabilirsiniz 's gibi bir şey olmadıkça ffmpegveya gccnerede seçeneğin gerçek açıklaması gidene kadar 40 hakkında maç üzerinden adıma var ...

Bazen şanslı olabilir ve yakınlaşmak ve oradan rafine etmek için "seçenekler" kelimesini arayabilirim, ancak söz konusu seçeneğe güvenilir bir şekilde atlayabilirsem iyi olurdu. Seçenekleri ayrıştırabilecek ve üzerinde arama yapabileceğiniz bir veritabanı oluşturabilecek bir araç olsaydı iyi olurdu, ancak birkaç sayfa için groff işaretlemesine baktıktan sonra sadece en iyi tahmin edilen bir çaba olacağını belirledim groff işaretlemesinde meta bilgi eksikliği nedeniyle ... emacs benim ideal dünya kadın modunda belirli seçenekleri aramayı destekleyebilir ... :)

Bir kılavuz sayfasındaki belirli bir seçeneğe doğrudan atlamak için ipuçlarınız var mı?

Yanıtlar:


5

İşte benim senaryom bunu. Deniyor diye .

$ 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.

Ancak böyle bir komut dosyasına erişiminiz yoksa, sadece çalıştırın less, sonra /^ *-option(boşluğu not edin) yazın, örneğin, gccman sayfasına, seçeneğin /^ *-dDEnterbelgelerini bulmak için yazın -dD.

Bu seçenek genellikle satırın başında göründüğü için çalışır.


1
Bunun için ayaklarınızı öpen büyük sakallı bir ayı düşünün!
sepehr

Ha ha! Teşekkürler! Ayrıca he, "kısa yardım" da olduğu gibi betiği yeniden adlandırdığımı unutmayın . En son sürüm github'da
Mikel

2

Kullandığım işlev bu. Ben "adam arama" için "mans" diyorum.

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

Kullanımı:

$ mans ^OPTIONS grep find xargs

Tatlı! Tam olarak umduğum "ideal" arama tablosu tipi çözüm değil, ama yine de çok yararlı. Teşekkürler.
mgalgs

1
Aşağıda belirtildiği gibi, çoğu zaman aradığınız şey biraz girintiden sonra çizginin başlangıcındadır, bu nedenle desen genellikle görünecektir mans '^ *<something>' <page>. Daha fazla ayrıntı için cevabıma bakın.
Mikel
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.