如何通过阅读手册页来学习 linux 系统编程?
How to learn linux system programming by reading man pages?
我阅读了 man creat
、man open
和 man close
,我发现手册页是学习 linux 的最佳来源。
但我需要一个阅读地图,我想知道一份提供高级概述的手册页列表,然后是深入细节的小节。
请指教
所以man -k intro
给出了一个列表,包括以下内容:
intro (1) - introduction to user commands
intro (2) - introduction to system calls
intro (3) - introduction to library functions
intro (4) - introduction to special files
intro (5) - introduction to file formats and filesystems
intro (6) - introduction to games
intro (7) - introduction to overview and miscellany section
intro (8) - introduction to administration and privileged commands
每个都可以被man intro.N
阅读(N是1-8),这些介绍页面看起来像man文档中章节的开头。
我阅读了 man creat
、man open
和 man close
,我发现手册页是学习 linux 的最佳来源。
但我需要一个阅读地图,我想知道一份提供高级概述的手册页列表,然后是深入细节的小节。
请指教
所以man -k intro
给出了一个列表,包括以下内容:
intro (1) - introduction to user commands
intro (2) - introduction to system calls
intro (3) - introduction to library functions
intro (4) - introduction to special files
intro (5) - introduction to file formats and filesystems
intro (6) - introduction to games
intro (7) - introduction to overview and miscellany section
intro (8) - introduction to administration and privileged commands
每个都可以被man intro.N
阅读(N是1-8),这些介绍页面看起来像man文档中章节的开头。