いろんな記事を読みました(man -kは結果を返しません)最初はmandb
何も更新せずに実行してからmandb -c
(7438 manual pages were added.
)、まだ
$ apropos compilation compilation: nothing appropriate.
しかし、
$ MANWIDTH=120 man objdump | grep -B 5 compilation
DESCRIPTION
objdump displays information about one or more object files. The options control what particular information
to display. This information is mostly useful to programmers who are working on the compilation tools, as
マニュアルページのセクション compilation
内にはっきりと表示されます。DESCRIPTION
$ man apropos
Each manual page has a short description available within it. apropos searches the descriptions for instances of keyword.
なぜ見つかりませんかapropos
?
システム:Linux Mint 19。
答え1
「簡単な説明」を参照するときは、man apropos
マンページの「DESCRIPTION」セクションを参照するのではなく、「NAME」セクションのコマンド名の後にある簡単な説明を参照してください。objdump
この場合、
名前
objdump
- ターゲットファイルの情報を表示します。
つまり簡単な説明は「対象ファイルの情報表示」です。
もちろん、
apropos "object files"
発見するobjdump
。