manコマンドでコマンドなどのマニュアルを見たときのキー操作について以下に記します。
下表にmanコマンドを実行したときのキー操作を記します。
| キー | 説明 |
| スペース | 次ページ |
| z | 次ページ |
| Enterキー | 一行分スクロール |
| d | 半ページスクロール |
| b | 前ページ |
| w | 前ページ |
| q | 終了 |
| h | ヘルプを表示 |
| /パターン | 後方のパターン検索 |
| ?パターン | 前方のパターン検索 |
他にも割り当てられているキーがありますので、hを押してヘルプを見てみてください。
以下、hを押した時の出力です。
SUMMARY OF LESS COMMANDS
Commands marked with * may be preceded by a number, N.
Notes in parentheses indicate the behavior if N is given.
h H Display this help.
q :q Q :Q ZZ Exit.
---------------------------------------------------------------------------
MOVING
e ^E j ^N CR * Forward one line (or N lines).
y ^Y k ^K ^P * Backward one line (or N lines).
f ^F ^V SPACE * Forward one window (or N lines).
b ^B ESC-v * Backward one window (or N lines).
z * Forward one window (and set window to N).
w * Backward one window (and set window to N).
ESC-SPACE * Forward one window, but don't stop at end-of-file.
d ^D * Forward one half-window (and set half-window to N).
u ^U * Backward one half-window (and set half-window to N).
ESC-) RightArrow * Left one half screen width (or N positions).
ESC-( LeftArrow * Right one half screen width (or N positions).
<snip>