man

コマンド別のマニュアル(英語)を表示します。説明文が複数ページにまたがる場合は、上矢印・下矢印を押下しスクロールして表示する事が出来ます。終了するには「q」を押下します。


書式

man [オプション ・・・] コマンド名

▲PageTop

オプション

オプション名 説明
-C ファイル名 設定ファイルを指定します。デフォルト設定では /usr/lib/man.conf が参照されます。
-M ディレクトリ名 [.ディレクトリ名2] ドキュメントを検索するディレクトリを指定します。
-P ページャ名 使用するページャ名を指定します。
-S セクション名[,セクション名2] ドキュメントを検索するセクションを指定します。
-a 検索してマッチした全てのドキュメントを表示します。
-c 最新のcat形式のドキュメントでも、man表示用に整形を行います。
-d デバッグ情報を表示します。
-D デバッグ情報とドキュメント表示を行います。
-f 「whatis」コマンドと同様です。
-F 表示を行わず、man表示用にドキュメントの整形を行います。
-h 使用方法を表示します。
-k 「apropos」コマンドと同様です。
-K 全てのドキュメントから指定した文字列を検索します。
-m 他システムについてのドキュメントを検索します。
-p プロプロセッサの順番を変更します。
-t 「groff」コマンドを使用してドキュメントの整形を行い表示します。
-w ドキュメントを検索するディレクトリを表示します。
-W ファイル名を1行ずつ表示します。

▲PageTop

実行例

cat」コマンドのドキュメントを表示します。


実行結果

$ man cat [Enter]
CAT(1)                    User Commands                    CAT(1)

NAME
       cat - concatenate files and print on the standard output

SYNOPSIS
       cat [OPTION] [FILE]...

DESCRIPTION
       Concatenate FILE(s), or standard input, to standard output.

       -A, --show-all
              equivalent to -vET

       -b, --number-nonblank
              number nonblank output lines

       -e     equivalent to -vE

       -E, --show-ends
              display $ at end of each line

       -n, --number
              number all output lines

       -s, --squeeze-blank
              never more than one single blank line

       -t     equivalent to -vT

       -T, --show-tabs
              display TAB characters as ^I

       -u     (ignored)

       -v, --show-nonprinting
              use ^ and M- notation, except for LFD and TAB

       --help display this help and exit

       --version
              output version information and exit

       With no FILE, or when FILE is -, read standard input.

EXAMPLES
       cat f - g
              Output f's contents, then standard input, then g's contents.

       cat    Copy standard input to standard output.

AUTHOR
       Written by Torbjorn Granlund and Richard M. Stallman.

REPORTING BUGS
       Report bugs to <bug-coreutils@gnu.org>.

COPYRIGHT
       Copyright (C) 2006 Free Software Foundation, Inc.
       This is free software.  You may redistribute copies of it under the terms of the GNU Gen-
       eral Public License <https://www.gnu.org/licenses/gpl.html>.  There is NO WARRANTY, to the
       extent permitted by law.

SEE ALSO
       The  full  documentation  for cat is maintained as a Texinfo manual.  If the info and cat
       programs are properly installed at your site, the command

              info cat
        

▲PageTop