Пошук певної опції на сторінці чоловіка


14

Я часто знаходжу собі manкоманду просто для того, щоб дізнатися про один конкретний варіант. Більшу частину часу я можу шукати параметр просто чудово, якщо тільки це щось на кшталт ffmpegабо gccде мені доведеться переглядати близько 40 матчів, поки я не дійшов до фактичного опису параметра ...

Іноді я можу пощастити і шукати слово "варіанти", щоб наблизитися, а потім уточнити його звідти, але було б добре, якби я міг надійно перейти прямо до питання, про який йде мова. Було б здорово, якби був інструмент, який міг би розібрати параметри та створити базу даних, на якій можна було б здійснити пошук, але після перегляду розмітки грофу на декількох сторінках я визначив, що це було б лише найкращим чином через відсутність метаінформації в розмітці groff ... У моєму ідеальному світі режим жінки в emacs підтримував би пошук конкретних варіантів ... :)

Якісь поради щодо переходу прямо до певного варіанту на чоловічій сторінці?

Відповіді:


5

Ось мій сценарій для цього. Це називається він .

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

Але якщо у вас немає доступу до такого сценарію, просто запустіть less, а потім введіть /^ *-option(відмітьте пробіл), наприклад, на gccсторінці man, введіть, /^ *-dDEnterщоб знайти документацію для цього -dDпараметра.

Це працює, тому що опція зазвичай з’являється на початку рядка.


1
Уявіть, що великий бородатий ведмедик цілує ваші пальці для цього!
sepehr

Ха-ха! Спасибі! Також зауважте, що я перейменував сценарій на he, як у "короткій допомозі". Остання версія є на Github
Mikel

2

Це функція, яку я використовую. Я називаю це "mans" для "пошуку людини".

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

Використання:

$ mans ^OPTIONS grep find xargs

Солодке! Не зовсім «ідеальне» рішення типу таблиць пошуку, на яке я сподівався, але все ще дуже корисний. Спасибі.
mgalgs

1
Як зазначалося нижче, більшість часу те, що ви шукаєте, знаходиться на початку рядка після деякого відступу, тому шаблон зазвичай буде виглядати так mans '^ *<something>' <page>. Дивіться мою відповідь для отримання більш детальної інформації.
Мікель
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.