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).
F Forward forever; like "tail -f".
r ^R ^L Repaint screen.
R Repaint screen, discarding buffered input.
---------------------------------------------------
Default "window" is the screen height.
Default "half-window" is half of the screen height.
4条答案
按热度按时间4urapxun1#
可以按q键退出手册页。
仅供参考:
根据我的经验,
man
通常使用less
来显示信息。要获得less
(和man
)的键盘快捷方式(导航、退出)的有用列表,您可以键入:下面是一个简短的实验:
qq24tv8q2#
只需键入
q
并输入this即可退出任何手册页zlwx9yxi3#
您可以简单地键入q并按Enter键,此处q表示退出。
gcxthw6b4#
man
命令使用您的默认寻呼机,它由$MANPAGER
(如果设置了)或$PAGER
指定。如果两者都没有设置,它将默认为合理的值,可能是more
或less
。(奇怪的是,我在man
命令的手册页中没有看到这一点,您可以通过键入man man
来查看该命令--一旦返回到shell提示符。)大多数寻呼机都可以通过键入q退出--对于调用寻呼机的其他程序,或者当您直接使用寻呼机查看文件(
less some-file.txt
)时,了解这一点将非常有用。当我在系统上运行
man
命令时,下面一行显示:在反相视频中。你看到了吗?(你可能会也可能不会,这取决于你的设置。)
如果您的寻呼机是
less
,则可以通过键入h获取帮助--或键入man less
来获取详细信息。