How can I display every man page available on a unix system? I want to list them all in an easy manner without manually digging up all the search paths, etc.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted
find $(find /usr /opt -name man -type d) -type f
link|improve this answer
If you are in the habit of installing things as an unprivileged user you may want to add $HOME to the starting paths; or if you are looking for every thing that anybody has installed add /home. – dmckee Jul 16 '11 at 15:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.