वैकल्पिक रूप से, आप त्वरित विवरण के साथ युग्मित आदेशों की एक सुविधाजनक सूची प्राप्त कर सकते हैं (जब तक कि कमांड में एक मैन पेज है, जो करते हैं):
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.)
फिर आप बस उसे वैसे ही पकड़ लेते हैं, जैसा आप चाहते हैं।
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
परिणाम छाँटे नहीं जाते हैं, इसलिए यदि आप लंबी सूची की तलाश कर रहे हैं, तो आप फेंक सकते हैं | सॉर्ट | बीच में, और फिर पाइप को कम / अधिक / सबसे अधिक पसंद है। आला:
apropos -s 1 '' | sort | grep zip | less
जो अपने नाम या उनके संक्षिप्त विवरण में "जिप" रखने वाले सभी आदेशों की क्रमबद्ध सूची देता है, और "कम" पेजर को पंप करता है। (आप $ PAGER के साथ "कम" को भी बदल सकते हैं और डिफ़ॉल्ट पेजर का उपयोग कर सकते हैं।)