如何在UNIX中退出MAN屏幕或页面?

nkkqxpd9  于 2022-11-04  发布在  Unix
关注(0)|答案(4)|浏览(315)

我输入了man ls。这显示了一个带有ls手册的屏幕。我想关闭这个手册并返回到上一个屏幕。我该怎么做呢?ls的手册页不允许我这样做。当我尝试键入Unix命令时,它总是显示“(END)”或一些消息。

4urapxun

4urapxun1#

可以按q键退出手册页。
仅供参考:
根据我的经验,man通常使用less来显示信息。要获得less(和man)的键盘快捷方式(导航、退出)的有用列表,您可以键入:

less --help

下面是一个简短的实验:

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.
qq24tv8q

qq24tv8q2#

只需键入q并输入this即可退出任何手册页

zlwx9yxi

zlwx9yxi3#

您可以简单地键入q并按Enter键,此处q表示退出。

gcxthw6b

gcxthw6b4#

man命令使用您的默认寻呼机,它由$MANPAGER(如果设置了)或$PAGER指定。如果两者都没有设置,它将默认为合理的值,可能是moreless。(奇怪的是,我在man命令的手册页中没有看到这一点,您可以通过键入man man来查看该命令--一旦返回到shell提示符。)
大多数寻呼机都可以通过键入q退出--对于调用寻呼机的其他程序,或者当您直接使用寻呼机查看文件(less some-file.txt)时,了解这一点将非常有用。
当我在系统上运行man命令时,下面一行显示:

Manual page ls(1) line 1 (press h for help or q to quit)

在反相视频中。你看到了吗?(你可能会也可能不会,这取决于你的设置。)
如果您的寻呼机是less,则可以通过键入h获取帮助--或键入man less来获取详细信息。

相关问题