Linux Programmer's Manual & User Commands html
https://www.kernel.org/doc/man-pages/ 搜索框輸入epoll調用Google查找node
至關於Google搜索 site:man7.org/linux/man-pages epoll ,能夠直接收藏,方便下次搜索查看: python
http://www.google.com.hk/#newwindow=1&q=site:man7.org+epoll linux
The Linux Kernel API c++
https://www.kernel.org/doc/htmldocs/kernel-api/git
The GNU C Library github
http://www.gnu.org/software/libc/manual/html_node/vim
使用man、info查看函數手冊: api
man epoll(Tab補全) 或 man -k epoll函數
man -k sleep 查看包含sleep的手冊
man -f sleep 查看名爲sleep的手冊(多個序號)
man -a sleep 查看全部名爲sleep的幫助信息
man 1 sleep 查看序號1的sleep
man 3 sleep 查看序號2的sleep
把man或info的信息存爲文本文件:
man epoll | col -b > epoll.txt
info epoll -o epoll.txt -s
C++函數手冊:
在線手冊:
http://gcc.gnu.org/onlinedocs/
http://www.cplusplus.com/reference/
離線手冊:
sudo apt-get -y install libstdc++6-4.6-doc
file:///usr/share/doc/libstdc++6-4.6-doc/libstdc++/html/index.html
Google Site在線搜索:
http://www.google.com.tw/#newwindow=1&q=site:www.cplusplus.com%2Freference%2F+vector
像man同樣查看手冊cppman:
https://github.com/aitjcize/cppman
sudo apt-get install python-pip vim
sudo pip install cppman
cppman cout
cppman用法相似man,查詢時能自動從cplusplus.com下載對應內容並轉換成man pages.
cppman -c 從cplusplus.com上下載全部手冊,耗時較長,但方便離線查看,不過通常是不須要的.