=================================================== Searching for items in the Unix manual pages (RTFM) =================================================== -IAN! idallen@ncf.ca Finding a keyword (e.g. 'name') in the title lines of manual pages: $ man -k name | more Finding only pages in section (1) of the manual: $ man -k name | grep '(1)' | more Finding only pages that are *not* in section (1) of the manual: $ man -k name | grep -v '(1)' | more Finding pages containing "name" in the title, that are in section (1), that do not contain the string "directory" in the title: $ man -k name | grep '(1)' | grep -v directory | more "man -k" works the same way as the "apropos" command. On Linux, "less" can be used in place of "more". Make sure you protect the characters used in the grep pattern (the first argument to grep) from expansion or processing by the shell.