Suchen nach einer bestimmten Option in einer Manpage


14

Ich manertappe oft einen Befehl, um etwas über eine bestimmte Option zu lernen. Die meiste Zeit kann ich nach der Option suchen, es sei denn, es ist so etwas wie ffmpegoder gccich muss etwa 40 Übereinstimmungen durchgehen, bis ich zur tatsächlichen Beschreibung der Option komme ...

Manchmal kann ich Glück haben und nach dem Wort "Optionen" suchen, um näher zu kommen und es dann von dort aus zu verfeinern, aber es wäre schön, wenn ich zuverlässig direkt zu der fraglichen Option springen könnte. Es wäre cool, wenn es ein Tool gäbe, das die Optionen analysieren und eine Datenbank erstellen könnte, in der Sie suchen können, aber nachdem ich mir das Groff-Markup für ein paar Seiten angesehen habe, habe ich festgestellt, dass es nur eine Best-Rate-Anstrengung wäre aufgrund des Fehlens von Meta-Informationen in groff Markup ... in meiner idealen Welt Frau Modus in emacs Unterstützung für bestimmte Optionen suchen würde ... :)

Gibt es Tipps, um direkt zu einer bestimmten Option in einer Manpage zu springen?

Antworten:


5

Hier ist mein Skript, um es zu tun. Es heißt er .

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

Wenn Sie jedoch keinen Zugriff auf ein solches Skript haben, führen Sie es einfach aus lessund geben Sie /^ *-option(beachten Sie das Leerzeichen) ein. Geben Sie beispielsweise in der gccManpage ein, /^ *-dDEnterum die Dokumentation für die -dDOption zu suchen .

Dies funktioniert, weil die Option normalerweise am Anfang der Zeile angezeigt wird.


1
Stellen Sie sich einen großen bärtigen Bären vor, der Ihnen dafür die Zehen küsst!
Sepehr

Ha ha! Vielen Dank! Beachten Sie auch, dass ich das Skript in umbenannt habe he, wie in "Kurzhilfe". Die neueste Version ist auf Github
Mikel

2

Dies ist die Funktion, die ich benutze. Ich nenne es "mans" für "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[@]}
}

Verwendung:

$ mans ^OPTIONS grep find xargs

Süss! Nicht gerade die "ideale" Lookup-Table-Lösung, auf die ich gehofft hatte, aber immer noch sehr nützlich. Vielen Dank.
mgalgs

1
Wie unten erwähnt, befindet sich das gesuchte Muster nach einigen Einrückungen meistens am Anfang der Zeile, sodass das Muster normalerweise so aussieht mans '^ *<something>' <page>. Siehe meine Antwort für weitere Details.
Mikel
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.