Tìm kiếm một tùy chọn cụ thể trong một trang người đàn ông


14

Tôi thường thấy mình manlà một lệnh chỉ để tìm hiểu về một lựa chọn cụ thể. Hầu hết thời gian tôi có thể tìm kiếm tùy chọn tốt, trừ khi nó giống như ffmpeghoặc gccnơi tôi phải bước qua khoảng 40 trận đấu cho đến khi tôi nhận được mô tả thực tế của tùy chọn ...

Đôi khi tôi có thể gặp may mắn và tìm kiếm từ "tùy chọn" để đến gần và sau đó tinh chỉnh nó từ đó, nhưng thật tuyệt nếu tôi có thể nhảy thẳng vào tùy chọn trong câu hỏi. Thật tuyệt nếu có một công cụ có thể phân tích các tùy chọn và xây dựng cơ sở dữ liệu mà bạn có thể thực hiện tìm kiếm, nhưng sau khi xem đánh dấu groff cho một vài trang, tôi đã xác định đó chỉ là một nỗ lực đoán đúng nhất do thiếu thông tin meta trong đánh dấu groff ... Trong chế độ phụ nữ thế giới lý tưởng của tôi trong emacs sẽ hỗ trợ tìm kiếm các tùy chọn cụ thể ... :)

Bất kỳ lời khuyên để nhảy thẳng đến một tùy chọn cụ thể trong một trang người đàn ông?

Câu trả lời:


5

Đây là kịch bản của tôi để làm điều đó. Nó được gọi là anh ấy .

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

Nhưng nếu bạn không có quyền truy cập vào tập lệnh như vậy, chỉ cần chạy less, sau đó nhập /^ *-option(lưu ý khoảng trắng), ví dụ: trong gcctrang man, nhập /^ *-dDEnterđể tìm tài liệu cho -dDtùy chọn.

Điều này hoạt động vì tùy chọn thường xuất hiện ở đầu dòng.


1
Hãy tưởng tượng một người đàn ông có râu lớn hôn ngón chân của bạn cho điều này!
sepehr

Ha ha! Cảm ơn! Cũng lưu ý rằng tôi đã đổi tên tập lệnh thành he, như trong "trợ giúp ngắn". Phiên bản mới nhất có trên github
Mikel

2

Đây là chức năng tôi sử dụng. Tôi gọi nó là "người đàn ông" cho "người đàn ông tìm kiếm".

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

Sử dụng:

$ mans ^OPTIONS grep find xargs

Ngọt! Không chính xác là giải pháp loại bảng tra cứu "lý tưởng" mà tôi đã hy vọng, nhưng vẫn rất hữu ích. Cảm ơn.
mgasms

1
Như đã lưu ý dưới đây, hầu hết thời gian những gì bạn đang tìm kiếm là ở đầu dòng sau khi thụt lề, do đó, mô hình thường sẽ trông như thế nào mans '^ *<something>' <page>. Xem câu trả lời của tôi để biết thêm chi tiết.
Mikel
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.