調査系コマンド

manコマンド

# man 5 passwd
1 ユーザコマンド
2 システムコール
3 ライブラリ
4 デバイスファイル
5 ファイルフォーマット
6 ゲーム
7 その他
8 システム管理コマンド
9 Linux独自のカーネル用ドキュメント

MANPATHは、/etc/man.config(manpath.config)で設定

# man -f passwd
passwd (1)    - update a user's authentication  tokens(s)
passwd (5)    - password file
passwd (1ssl) - compute password hashes
#
# man -k htpasswd ※部分一致
htpasswd (1)  - Manage user files for basic authentication
# 

whatisコマンド

# whatis passwd
passwd (1)    - update a user's authentication  tokens(s)
passwd (5)    - password file
passwd (1ssl) - compute password hashes
#

whatisデータベースはmakewhatisで作成

aproposコマンド

# apropos passwd (man -kと同じ)

whereisコマンド(バイナリ,ソースコード,マニュアルファイルを表示)

# whereis ls
ls: /bin/ls /usr/share/man/man1/ls.1.gz
#