From the NannyMUD documentation

LAST CHANGE

2003-07-19

FUNCTION


NAME

        more - View a file one page at a time.

SYNTAX

	more [file_name]

DESCRIPTION

	The command 'more' is used to view a file a piece at a time. You give
	the name of the file as an argument. If you do not give a file name,
	then more will show you the code for your environment, if that is
	possible. The command will accept the following inputs when browsing
	a file:

	  ?       List the commands available.
	  u,p     One page up.
	  ,n  One page down.
	  b,d     Up/down 4 lines.
	  #       Goto line #.
	  +/-#    Jump # lines up/down.
	  /str    Goto line with first occurance of str. This is actually a
		  search using a regular expression.
	  l#      Set page length.

EXAMPLE

	more /obj/player.c
	more ~/castle.c
	more me.tracker

SEE ALSO

        regexp in efun/special/regexp

SEE ALSO

        ls in std/module/default/ls
        ls in wizcommands/files/ls

SEE ALSO

        ed in build/ed
        ed in efun/disc_related/ed
        ed in wizcommands/files/ed

SEE ALSO

        rm in efun/disc_related/rm
        rm in wizcommands/files/rm

SEE ALSO

        cat in efun/disc_related/cat
        cat in wizcommands/files/cat

SEE ALSO

        tail in efun/disc_related/tail
        tail in wizcommands/files/tail