getopt など、Ubuntu コマンドでは名前があいまいな特定の C 関数があります。これらの関数のマニュアル ページを表示するにはどうすればよいですか? インターネットで簡単に利用できることは間違いありませんが、できるだけ端末から離れないようにしたいと思っています。
質問する
257 次
5 に答える
4
sectionは次のいずれかの形式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
してください。
于 2012-10-09T05:31:39.050 に答える
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
次に、ファイル名 (最初の出力) または括弧の間 (2 番目の出力) にある番号を使用して、適切なマニュアル ページを選択できます。たとえば、man 1 getopt
またはman 3 getopt
.
于 2012-10-09T05:30:41.647 に答える
1
$ man 3 getopt
セクションはどこ3
ですか。
$ man man
セクションとして。状態:
マニュアルは通常、番号が付けられた 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 System 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
于 2012-10-09T05:31:10.987 に答える