I learn Linux partly by reading man documentation.
I often find relevant man pages using apropos or man <command>.
However, I've come across many "hidden" gems, like man credentials and man unix that I didn't knew existed before I saw other man pages refer to them.
Is there a way to list all man pages available on the system, so that I can get a complete overview of what's available?
I tried looking into man --all --regex <regex>, but it seems that man opens the matching man pages instead of listing them.
apropos -r .* | less. Is that what you are looking for? If you want to limit to man levels, you can useapropos -s <level> -r .*(for instanceapropos -s 3 -r .*).