Searching the man pages:
You can search the man pages for a pattern. Suppose I want to
find all the instances of "search" under grep. At the command
prompt (:), I type
"/search". I can continue to find instances of "search" by simply typing "/"
at the command prompt.
% man grep
GREP(1) GREP(1)
NAME
grep - search a file for a pattern
SYNOPSIS
grep [options] limited regular expression [file . . .]
DESCRIPTION
grep searches files for a pattern and prints all lines that contain that
pattern. grep uses limited regular expressions (expressions that have
string values that use a subset of the possible alphanumeric and special
characters) like those used with ed(1) to match the patterns. It uses a
compact non-deterministic algorithm.
/search
grep - search a file for a pattern
...