当前位置: 技术问答>linux和unix
关于帮助信息的问题!!!
来源: 互联网 发布时间:2016-12-30
本文导语: linux c/c++ 我发现使用 man 或者 devhelp工具查看函数帮助信息很多都木有。这是怎么回事? 用啥好呢 | man分为几大章节,可能需要如楼上所说的确定章节,例如man ls会在左上角显示LS(1)...
linux c/c++
我发现使用 man 或者 devhelp工具查看函数帮助信息很多都木有。这是怎么回事? 用啥好呢
我发现使用 man 或者 devhelp工具查看函数帮助信息很多都木有。这是怎么回事? 用啥好呢
|
man分为几大章节,可能需要如楼上所说的确定章节,例如man ls会在左上角显示LS(1)表示是第一章节
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 conventions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
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 conventions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
|
哪些没有?
对于与命令同名的函数,需要指定section,比如
man 2 printf
对于与命令同名的函数,需要指定section,比如
man 2 printf
|
如果要c++的, 这个没有的.
可以去下个c++的man
可以去下个c++的man
|
这个是linux的api, 直接man就是了.
|
man -a 查看所有,-k 查找相关
pthread系列要加装一个posix包
信号量可以man semop看看
pthread系列要加装一个posix包
信号量可以man semop看看