OpenSUSE 12.01, KDE, kernel 3.1.9-1.4-default
Trying to get all man pages. Basically the answer is apropos . or man -k .. Why does apropos \* only returns about 300 man pages while apropos . returns close to 60,000 and in a lot less time? I get that the former is doing a search and compare op and therefor is slower while the latter just belched out whatever it found. However, why does \* becomes a search operation while ., also a regexp, becomes a listing operation?
PS: apparently I had to type \\\* to get \*, interesting.