Mencari opsi tertentu di halaman manual


14

Saya sering menemukan diri saya manperintah hanya untuk belajar tentang satu opsi tertentu. Sebagian besar waktu saya dapat mencari opsi dengan baik, kecuali jika itu seperti ffmpegatau di gccmana saya harus menelusuri sekitar 40 pertandingan sampai saya mendapatkan deskripsi aktual dari opsi ...

Kadang-kadang saya bisa beruntung dan mencari kata "opsi" untuk mendekat dan kemudian memperbaikinya dari sana, tetapi akan lebih baik jika saya bisa langsung melompat langsung ke opsi yang dimaksud. Akan sangat keren jika ada alat yang dapat mengurai opsi dan membangun database tempat Anda dapat melakukan pencarian, tetapi setelah melihat groff markup untuk beberapa halaman saya telah menentukan itu hanya akan menjadi upaya tebakan terbaik karena kurangnya meta-informasi di markup groff ... Dalam mode wanita dunia ideal saya di emacs akan mendukung pencarian opsi tertentu ... :)

Adakah kiat untuk melompat langsung ke opsi tertentu di halaman manual?

Jawaban:


5

Inilah skrip saya untuk melakukannya. Itu namanya dia .

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

Tetapi jika Anda tidak memiliki akses ke skrip seperti itu, jalankan saja less, lalu ketik /^ *-option(perhatikan spasi), misalnya, di gcchalaman manual, ketik /^ *-dDEnteruntuk menemukan dokumentasi untuk -dDopsi tersebut.

Ini berfungsi karena opsi biasanya muncul di awal baris.


1
Bayangkan pria beruang berjanggut besar mencium jari-jari kaki Anda untuk ini!
sepehr

Ha ha! Terima kasih! Perhatikan juga bahwa saya mengganti nama skrip he, seperti pada "bantuan singkat". Versi terbaru ada di github
Mikel

2

Ini adalah fungsi yang saya gunakan. Saya menyebutnya "mans" untuk "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[@]}
}

Pemakaian:

$ mans ^OPTIONS grep find xargs

Manis! Tidak persis solusi tipe lookup-table "ideal" yang saya harapkan, tetapi masih sangat berguna. Terima kasih.
mgalgs

1
Seperti disebutkan di bawah ini, sebagian besar waktu yang Anda cari adalah di awal baris setelah beberapa lekukan, sehingga polanya biasanya akan terlihat seperti mans '^ *<something>' <page>. Lihat jawaban saya untuk lebih jelasnya.
Mikel
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.