When I look at what I have installed via apt list --installed, why are there so many entries without manual pages?
I tried info [package name] and package name --help and get the output
bash: package name: command not found People think that you are looking for manual pages, because you erroneously think that you are looking for manual pages. To see descriptions of what the packages in that list actually are, use:
aptitude show ${PACKAGE_NAME}apt show ${PACKAGE_NAME}man [binary name] is the useful syntax to enter at the command line.
package name but the binary that comes with it provided that it has a man page. The man pages are found in /usr/share/man/man# where man# corresponds to /usr/share/man/man1, /usr/share/man/man2 and so on and so forth.
dpkg -L package | grep /man | xargs -L 1 basename