UNIX man command to find list of man sections

删除回忆录丶 提交于 2019-12-24 05:06:13

问题


I'm working on a lab that is supposed to help us better navigate the command line on a Linux system, but I'm getting stuck on man pages.

We are supposed to use the man command to find a list of the man page sections, adn I can't seem to figure out how to do this. I've tried entering

man man

but that doesn't give me any information on the individual sections. I've also tried looking on Google to find what command I should use, but no luck there either.

Can anybody point me in the right direction?


回答1:


apropos -r '.*'

This will list all manual pages. A script to chop this up into lists by section is a follow-up homework assignment.



来源:https://stackoverflow.com/questions/25879960/unix-man-command-to-find-list-of-man-sections

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!