หรือคุณสามารถรับรายการคำสั่งที่สะดวกสบายควบคู่ไปกับคำอธิบายอย่างรวดเร็ว (ตราบใดที่คำสั่งนั้นมี man page ซึ่งส่วนใหญ่ทำ):
apropos -s 1 ''
-s 1 returns only "section 1" manpages which are entries for executable programs.
'' is a search for anything. (If you use an asterisk, on my system, bash throws in a search for all the files and folders in your current working directory.)
จากนั้นคุณก็ grep มันเหมือนที่คุณต้องการ
apropos -s 1 '' | grep xdg
อัตราผลตอบแทน:
xdg-desktop-icon (1) - command line tool for (un)installing icons to the desktop
xdg-desktop-menu (1) - command line tool for (un)installing desktop menu items
xdg-email (1) - command line tool for sending mail using the user's preferred e-mail composer
xdg-icon-resource (1) - command line tool for (un)installing icon resources
xdg-mime (1) - command line tool for querying information about file type handling and adding descriptions for new file types
xdg-open (1) - opens a file or URL in the user's preferred application
xdg-screensaver (1) - command line tool for controlling the screensaver
xdg-settings (1) - get various settings from the desktop environment
xdg-user-dir (1) - Find an XDG user dir
xdg-user-dirs-update (1) - Update XDG user dir configuration
ผลลัพธ์ดูเหมือนจะไม่ถูกจัดเรียงดังนั้นหากคุณกำลังมองหารายการที่มีความยาวคุณสามารถโยน | จัดเรียง | ตรงกลางแล้วต่อท่อนั้นเข้ากับเพจเจอร์อย่างน้อย / มาก / มากที่สุด Ala:
apropos -s 1 '' | sort | grep zip | less
ซึ่งส่งกลับรายการเรียงลำดับของคำสั่งทั้งหมดที่มี "zip" ในชื่อหรือคำอธิบายสั้น ๆ และปั๊มที่เพจเจอร์ "น้อย" (คุณสามารถแทนที่ "น้อยลง" ด้วย $ PAGER และใช้เพจเจอร์เริ่มต้น)