GNU/Linux >> Linux の 問題 >  >> Linux

Linux では、bash コマンドではなく C 関数のマニュアル ページを取得するにはどうすればよいですか?

man 2 bind

マニュアルの別のセクションからの結果が必要です!男はあなたが欲しい情報を求めてさまざまなセクションを検索します。以下の devnull リストのように、番号は検索するセクションを示します。

ちなみにbind C ライブラリ関数ではなく、システム コールです。システム コール (カーネル コール) はマニュアルのセクション 2 にあり、ライブラリ関数はセクション 3 にあります。

man man man コマンドの使い方を教えてくれます!


man man と言って

SYNOPSIS
   man ... [[section] page ...] ...
   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  conventions), e.g.
       man(7), groff(7)
   8   System administration commands (usually only for root)
   9   Kernel routines [Non standard]

例:man 1 printf printf のマニュアルが表示されます シェルユーティリティ、 man 3 printf printf() のマニュアルが表示されます libc.

(疑わしい場合は、man -k foobar と言ってください . foobar の man ページのリストを提供します。 正規表現として)


Linux
  1. LinuxのbashコマンドをPERLスクリプトで実行する方法は?

  2. コマンドの使用方法を学ぶためにマニュアルページを使用する方法?

  3. Bashビルトインコマンドの個々のマニュアルページを取得しますか?

  1. 特定のコマンドにカスタムオートコンプリートを指定するにはどうすればよいですか?

  2. Linux でマニュアルページを効果的に使用する方法

  3. Linux の man ページの読み方は?

  1. マニュアルページを閲覧するための上位5つのLinuxmanコマンドオプション

  2. コマンドエイリアスのBash補完を取得する方法は?

  3. Linux の man ページを検索する方法 (grep などを使用)