[bbadger@demo01] (1)$ apropos compiler | less
will take the output of apropos and pass it to less.
Then, you can use the less program to search through the output. Note
that the pipe uses a vertical bar (), not a slash (/).
Be aware that this does not create a file because the data is piped directly from one program to another. If you would like to create a file from this data, you will have to use any save features of the program to which you pipe.
Further be aware that not all programs respond the same way to pipes. Some programs behave erratically if data is piped directly to them. Consult man pages for more info.