Finding stuff with man keywords
Posted: 18 Nov 2012, 14:02
The manual pages are a good way to learn about different Linux commands. But it is also good to find stuff on your system. So if you want to find everything that starts with naut on your system you can do it like this
The output will be something like this:
They -k (keyword) switch will search the description of all man pages for that word.
Code: Select all
man -k naut The output will be something like this:
Code: Select all
nautilus (1) - the GNOME File Manager
nautilus-connect-server (1) - To Access a remote server
nautilus-sendto (1) - convenience application to send a file via email or instant messenger
They -k (keyword) switch will search the description of all man pages for that word.
Further to that, while viewing a man page, you can search forward by typing a slash followed by the search string, then press 
And it does work nicely 
