4BSD/usr/man/cat1/more.1

Compare this file to the similar file:
Show the results in this format:




MORE(1)             UNIX Programmer's Manual              MORE(1)



NAME
     more, page - file perusal filter for crt viewing

SYNOPSIS
     more [ -d ] [ -f ] [ -l ] [ -_n ] [ +_l_i_n_e_n_u_m_b_e_r ] [ +/_p_a_t_t_e_r_n
     ] [ name ...  ]

     page [ -d ] [ -f ] [ -l ] [ -_n ] [ +_l_i_n_e_n_u_m_b_e_r ] [ +/_p_a_t_t_e_r_n
     ] [ name ...  ]

DESCRIPTION
     _M_o_r_e is a filter which allows examination of a continuous
     text one screenful at a time on a soft-copy terminal.  It
     normally pauses after each screenful, printing --More-- at
     the bottom of the screen.  If the user then types a carriage
     return, one more line is displayed.  If the user hits a
     space, another screenful is displayed.  Other possibilites
     are enumerated later.

     The command line options are:

     -_n   An integer which is the size (in lines) of the window
          which _m_o_r_e will use instead of the default.

     -d   _M_o_r_e will prompt the user with the message "Hit space
          to continue, Rubout to abort" at the end of each
          screenful.  This is useful if _m_o_r_e is being used as a
          filter in some setting, such as a class, where many
          users may be unsophisticated.

     -f   This causes _m_o_r_e to count logical, rather than screen
          lines.  That is, long lines are not folded.  This
          option is recommended if _n_r_o_f_f output is being piped
          through _u_l, since the latter may generate escape
          sequences.  These escape sequences contain characters
          which would ordinarily occupy screen postions, but
          which do not print when they are sent to the terminal
          as part of an escape sequence.  Thus _m_o_r_e may think
          that lines are longer than they actually are, and fold
          lines erroneously.

     -l   Do not treat ^L (form feed) specially.  If this option
          is not given, _m_o_r_e will pause after any line that con-
          tains a ^L, as if the end of a screenful had been
          reached.  Also, if a file begins with a form feed, the
          screen will be cleared before the file is printed.

     +_l_i_n_e_n_u_m_b_e_r
          Start up at _l_i_n_e_n_u_m_b_e_r.

     +/_p_a_t_t_e_r_n
          Start up two lines before the line containing the



Printed 11/10/80             9/25/80                            1






MORE(1)             UNIX Programmer's Manual              MORE(1)



          regular expression _p_a_t_t_e_r_n.

     If the program is invoked as _p_a_g_e, then the screen is
     cleared before each screenful is printed (but only if a full
     screenful is being printed), and _k - 1 rather than _k - 2
     lines are printed in each screenful, where _k is the number
     of lines the terminal can display.

     _M_o_r_e looks in the file /_e_t_c/_t_e_r_m_c_a_p to determine terminal
     characteristics, and to determine the default window size.
     On a terminal capable of displaying 24 lines, the default
     window size is 22 lines.

     If _m_o_r_e is reading from a file, rather than a pipe, then a
     percentage is displayed along with the --More-- prompt.
     This gives the fraction of the file (in characters, not
     lines) that has been read so far.

     Other sequences which may be typed when _m_o_r_e pauses, and
     their effects, are as follows (_i is an optional integer
     argument, defaulting to 1) :

     _i<space>
          display _i more lines, (or another screenful if no argu-
          ment is given)

     ^D   display 11 more lines (a ``scroll'').  If _i is given,
          then the scroll size is set to _i.

     d    same as ^D (control-D)

     _iz   same as typing a space except that _i, if present,
          becomes the new window size.

     _is   skip _i lines and print a screenful of lines

     _if   skip _i screenfuls and print a screenful of lines

     q or Q
          Exit from _m_o_r_e.

     =    Display the current line number.

     v    Start up the editor _v_i at the current line.

     h    Help command; give a description of all the _m_o_r_e com-
          mands.

     _i/expr
          search for the _i-th occurrence of the regular expres-
          sion _e_x_p_r.  If there are less than _i occurrences of
          _e_x_p_r, and the input is a file (rather than a pipe),



Printed 11/10/80             9/25/80                            2






MORE(1)             UNIX Programmer's Manual              MORE(1)



          then the position in the file remains unchanged.  Oth-
          erwise, a screenful is displayed, starting two lines
          before the place where the expression was found.  The
          user's erase and kill characters may be used to edit
          the regular expression.  Erasing back past the first
          column cancels the search command.

     _in   search for the _i-th occurrence of the last regular
          expression entered.

     '    (single quote) Go to the point from which the last
          search started.  If no search has been performed in the
          current file, this command goes back to the beginning
          of the file.

     !command
          invoke a shell with _c_o_m_m_a_n_d. The characters `%' and `!'
          in "command" are replaced with the current file name
          and the previous shell command respectively.  If there
          is no current file name, `%' is not expanded.  The
          sequences "\%" and "\!" are replaced by "%" and "!"
          respectively.

     _i:n  skip to the _i-th next file given in the command line
          (skips to last file if n doesn't make sense)

     _i:p  skip to the _i-th previous file given in the command
          line.  If this command is given in the middle of print-
          ing out a file, then _m_o_r_e goes back to the beginning of
          the file. If _i doesn't make sense, _m_o_r_e skips back to
          the first file.  If _m_o_r_e is not reading from a file,
          the bell is rung and nothing else happens.

     :f   display the current file name and line number.

     :q or :Q
          exit from _m_o_r_e (same as q or Q).

     .    (dot) repeat the previous command.

     The commands take effect immediately, i.e., it is not neces-
     sary to type a carriage return.  Up to the time when the
     command character itself is given, the user may hit the line
     kill character to cancel the numerical argument being
     formed.  In addition, the user may hit the erase character
     to redisplay the --More--(xx%) message.

     At any time when output is being sent to the terminal, the
     user can hit the quit key (normally control-\).  _M_o_r_e will
     stop sending output, and will display the usual --More--
     prompt.  The user may then enter one of the above commands
     in the normal manner.  Unfortunately, some output is lost



Printed 11/10/80             9/25/80                            3






MORE(1)             UNIX Programmer's Manual              MORE(1)



     when this is done, due to the fact that any characters wait-
     ing in the terminal's output queue are flushed when the quit
     signal occurs.

     The terminal is set to _n_o_e_c_h_o mode by this program so that
     the output can be continuous.  What you type will thus not
     show on your terminal, except for the / and !  commands.

     If the standard output is not a teletype, then _m_o_r_e acts
     just like _c_a_t, except that a header is printed before each
     file (if there is more than one).

     A sample usage of _m_o_r_e in previewing _n_r_o_f_f output would be

          nroff -ms +2 doc.n | more

AUTHOR
     Eric Shienbrood

FILES
     /etc/termcap        Terminal data base
     /usr/lib/more.help  Help file

SEE ALSO
     script(1)






























Printed 11/10/80             9/25/80                            4