ค้นหาตัวเลือกเฉพาะในหน้าคน


14

ฉันมักจะพบว่าตัวเองmanกำลังใช้คำสั่งเพียงเพื่อเรียนรู้เกี่ยวกับตัวเลือกเฉพาะ เวลาส่วนใหญ่ฉันสามารถค้นหาตัวเลือกได้ดีเว้นแต่มันจะเป็นสิ่งที่ชอบffmpegหรือgccที่ฉันต้องก้าวผ่านประมาณ 40 แมตช์จนกว่าฉันจะไปถึงคำอธิบายที่แท้จริงของตัวเลือก ...

บางครั้งฉันสามารถโชคดีและค้นหาคำว่า "ตัวเลือก" เพื่อเข้าใกล้แล้วปรับแต่งจากที่นั่น แต่มันจะดีถ้าฉันสามารถกระโดดไปที่ตัวเลือกที่เป็นปัญหาได้อย่างน่าเชื่อถือ มันจะเจ๋งถ้ามีเครื่องมือที่สามารถแยกวิเคราะห์ตัวเลือกและสร้างฐานข้อมูลที่คุณสามารถทำการค้นหาได้ แต่หลังจากดูที่มาร์กอัปของ Groff สำหรับสองสามหน้าฉันได้พิจารณาแล้วว่ามันจะเป็นความพยายามที่ดีที่สุด เนื่องจากการขาดข้อมูลเมตาในมาร์กอัป 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 page ให้พิมพ์/^ *-dDEnterเพื่อค้นหาเอกสารประกอบสำหรับ-dDตัวเลือก

ใช้งานได้เนื่องจากตัวเลือกมักจะปรากฏที่จุดเริ่มต้นของบรรทัด


1
ลองนึกภาพคนที่มีหนวดเคราตัวโตกำลังจูบเท้าของคุณด้วยสิ่งนี้!
sepehr

ฮ่า ขอบคุณ! โปรดทราบว่าฉันได้เปลี่ยนชื่อสคริปต์heเป็นเช่น "ช่วยสั้น" รุ่นล่าสุดอยู่ในGitHub
Mikel

2

นี่คือฟังก์ชั่นที่ฉันใช้ ฉันเรียกมันว่า "ม็อง" สำหรับ "ค้นหาคน"

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>ตามที่ระบุไว้ด้านล่างเวลาส่วนใหญ่ของสิ่งที่คุณกำลังมองหาอยู่ในช่วงเริ่มต้นของเส้นหลังเยื้องบางส่วนเพื่อให้รูปแบบที่มักจะมีลักษณะเช่น ดูคำตอบของฉันสำหรับรายละเอียดเพิ่มเติม
Mikel
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.