Linux 下编程最痛苦的是什么?是语法?是编译器?是函数?我感觉是一堆C函数而且还没有参考。。。本来想买本书,可是觉得总是翻书又不方便,于是就查了一下,原来强大的男人(man)也可以用来查看C函数。
Ubuntu 默认安装的只是命令的 man
我们先来查看一下最初的man,执行以下命令:
man man
可以看到
The table below shows the section numbers of the manual followed by the
types of pages they contain.
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions eg /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conven‐ tions), e.g. man(7), groff(7)
8 System administration commands (usually only for root) 9 Kernel routines [Non standard] A manual page consists of several sections.
可是在Linux 下编写 C 程序时,又很多的C函数,肯定是记不住的。所以有一个简单而且免费的方法可以实现:
在终端下输入以下命令,就可以下载C函数的man了。
#apt-get install manpages-dev#apt-get install manpages-posix-dev
OK,本来还打算买本 Linux C 函数参考手册的,现在不用了。:D
最后,再次感谢强大的man!