某些C函數的名稱與Ubuntu命令不一致,例如:getopt。我如何查看這些功能的手冊頁?毫無疑問,它很容易在互聯網上獲得,但我非常希望儘可能不離開終端。Ubuntu手冊頁模糊
2
A
回答
4
使用格式man [section] name
(例如, man 3 getopt
)其中部可以是以下之一:
1 User Commands
2 System Calls
3 C Library Functions
4 Devices and Special Files
5 File Formats and Conventions
6 Games et. Al.
7 Miscellanea
8 System Administration tools and Deamons
有關詳情,請man man
。
1
man 3 getopt
給出c函數信息。
其中,作爲man 1 getopt
或man getopt
給出命令信息。
頁面傳統上使用符號「name(section)
」表示:例如,ftp(1)
。當系統調用,用戶命令或宏程序包的名稱一致時,相同的頁面名稱可能會出現在手冊的多個部分中。
2
man 3 getopt
顯示C getopt的聯機幫助頁。
看到man man
1
man -wa getopt
給你手冊頁的getopt
名單:在我的系統,它是:
/usr/share/man/man1/getopt.1.bz2
/usr/share/man/man3/getopt.3.bz2
/usr/share/man/man3p/getopt.3p.bz2
,或者,man -f getopt
:
getopt (1) - parse command options (enhanced)
getopt (3) - Parse command-line options
getopt [] (1) - parse command options (enhanced)
getopt [] (3) - Parse command-line options
getopt [] (3p) - command option parsing
你可以然後使用文件名中的數字(在第一個輸出中)或括號(在第二個輸出中):例如,man 1 getopt
或man 3 getopt
。
1
$ man 3 getopt
其中3
是截面。
$ man man
作爲Sections.狀態:
手動通常分成8個編號節,安排如下(在BSD,Unix和Linux):
Section Description
1. General commands
2. System calls
3. Library functions, covering in particular the C standard library
4. Special files (usually devices, those found in /dev) and drivers
5. File formats and conventions
6. Games and screensavers
7. Miscellanea
8. System administration commands and daemons
的Unix系統V使用類似的編號方案,除了不同的順序:
Section Description
1. General commands
1M. System administration commands and daemons
2. System calls
3. C library functions
4. File formats and conventions
5. Miscellanea
6. Games and screensavers
7. Special files (usually devices, those found in /dev) and drivers
相關問題
- 1. Ubuntu中的C++手冊頁
- 2. Ubuntu上C編程的手冊頁
- 3. 模糊半頁
- 4. libvlc的手冊頁
- 5. MakeMaker的手冊頁
- 6. TCPDF手冊分頁
- 7. 如何在Ubuntu下安裝libnet的手冊頁12.04
- 8. 如何在Ubuntu上獲取XRender手冊頁?
- 9. 如何獲取Ubuntu上的OpenGL手冊頁,如「man glRotate」?
- 10. 如何在ubuntu服務器上安裝STREAMS的IOCTL手冊頁?
- 11. 導航到手冊頁中的另一個手冊頁
- 12. PyGTK的圖標模糊在Ubuntu
- 13. 如何搜索手冊頁?
- 14. Visual Studio手冊頁面C
- 15. tcsh彩色的手冊頁?
- 16. 手冊頁命令在iTerm2
- 17. 使用CSS模糊頁面
- 18. 模糊silverlight中的網頁
- 19. AngularJS分頁手冊更新頁數
- 20. 精靈在手機上模糊
- 21. 手指觸摸的Android模糊效果
- 22. 高斯模糊手柄alpha透明度
- 23. MahApps手動調用主窗口模糊
- 24. 響應式網站的一頁在iPhone上模糊/模糊
- 25. 每當我打開一個在Ubuntu的手冊頁,我看到這個警告
- 26. cmake手冊頁生成/打包/安裝
- 27. gcc庫函數的手冊頁
- 28. 如何爲手冊頁指定域
- 29. 在手冊頁上運行aspell
- 30. 如何生成多個手冊頁?
$ man 3 getopt,? – Morpfh