Apropos
This page was last updated on July 18, 2009.
One-word search
- The apropos command searches the manual page names and descriptions. If you don’t know the command for what you’d like to do in the terminal window, type this command in a terminal window, replacing foo with whatever it is you’re looking for:
- For example, if you want to know how to get rid of a file, type:
- Another way to do the same search is with the man -k command:
apropos foo
apropos delete
or:
apropos remove
If you don’t find anything, try other words that are similar to the one you already used. Sometimes software authors use different words to describe their commands/programs than you would.
man -k foo
Two-word search
- To do a more refined two-word search using apropos, type this command in terminal window, replacing foo and bar with the search terms:
- For example, if you’re looking for text editors, type:
- Another way to do the same search is with the man -k command:
apropos foo | grep bar
apropos text | grep editor
man -k foo | grep bar
Obligatory Happy Ending
And they all lived happily ever after. The end.

Comment: