[net.sources] MSDOS LESS - repost with fixes to reponses to first posting

keily@kodak.UUCP (dick keily) (01/14/87)

Here is an updated version of less for msdos. Fixes for:
	1. Use on any combination of pc monitor/card combination.
	2. Redirection and piping ok now.
This posting will be followed by a posting of the full source code
that will be in three parts. This uuencoded exe is for people who
don't have the compiler nor the inclination to compile the source
if they don't have to. Please send any comments or problem reports
to me at ...!seismo!rochester!kodak!keily (learned how to spell sizemoe)
This should answer any mail responses that I recently received. I
consider all mail answered by this posting. Send mail again and you
shall be answered. Enjoy.
				Dick Keily

===================Edit thru here and send thru sh=================
#! /bin/sh
# This is a shell archive, meaning:
# 1. Remove everything above the #! /bin/sh line.
# 2. Save the resulting text in a file.
# 3. Execute the file with /bin/sh (not csh) to create the files:
#	less.man
#	less.uue
#	readme
# This archive created: Wed Jan 14 11:11:07 1987
export PATH; PATH=/bin:$PATH
if test -f 'less.man'
then
	echo shar: will not over-write existing file "'less.man'"
else
cat << \SHAR_EOF > 'less.man'
LESS(l)

NAME
     less - opposite of more

SYNOPSIS
     less [-cdepstwmMqQuU] [-h_n] [-b[fp]_n] [-x_n] [+_c_m_d] [_n_a_m_e] ...

DESCRIPTION
     _L_e_s_s is a program similar to _m_o_r_e (1), but which allows backwards
     movement in the file as well as forward movement.  Also, _l_e_s_s does not
     have to read the entire input file before starting, so with large
     input files it starts up faster than text editors like _v_i (1).  _L_e_s_s
     uses termcap, so it can run on a variety of terminals.  There is even
     limited support for hardcopy terminals.  (On a hardcopy terminal,
     lines which should be printed at the top of the screen are prefixed
     with an up-arrow.)

     Commands are based on both _m_o_r_e and _v_i. Commands may be preceeded by a
     decimal number, called N in the descriptions below.  The number is
     used by some commands, as indicated.


COMMANDS
     h    Help: display a summary of these commands.  If you forget all the
          other commands, remember this one.

     SPACE
          Scroll forward N lines, default one screen.  If N is more than
          the screen size, only one screenful is displayed.

     f    Same as SPACE.

     b    Scroll backward N lines, default one screen.  If N is more than
          the screen size, only one screenful is displayed.

     RETURN
          Scroll forward N lines, default 1.  If N is more than the screen
          size, the entire N lines are displayed.

     e    Same as RETURN.

     j    Also the same as RETURN.

     y    Scroll backward N lines, default 1.  If N is more than the screen
          size, the entire N lines are displayed.

     k    Same as y.

     d    Scroll forward N lines, default 10.  If N is specified, it
          becomes the new default for all d and u commands.

     u    Scroll backward N lines, default 10.  If N is specified, it
          becomes the new default for all d and u commands.

     r    Repaint the screen.

     R    Repaint the screen, discarding any buffered input.  Useful if the
          file is changing while it is being viewed.

     g    Go to line N in the file, default 1 (beginning of file).
          (Warning: this may be slow if N is large.)

     G    Go to line N in the file, default the end of the file.  (Warning:
          this may be slow if standard input, rather than a file, is being
          read.)
     p    Go to a position N percent into the file.  N should be between 0
          and 100.  (This is possible if standard input is being read, but
          only if _l_e_s_s has already read to the end of the file.  It is
          always fast, but not always useful.)

     %    Same as p.

     m    Followed by any lowercase letter, marks the current position with
          that letter.

     '    Followed by any lowercase letter, returns to the position which
          was previously marked with that letter.  All marks are lost when
          a new file is examined.

     /pattern
          Search forward in the file for the N-th occurence of the pattern.
          N defaults to 1.  The pattern is a regular expression, as
          recognized by _e_d. The search starts at the second line displayed
          (but see the -t option, which changes this).

     ?pattern
          Search backward in the file for the N-th occurence of the
          pattern.  The search starts at the line immediately before the
          top line displayed.

     n    Repeat previous search, for N-th occurence of the last pattern.

     E    Examine a new file.  If the filename is missing, the "current"
          file (see the N and P commands below) from the list of files in
          the command line is re-examined.

     N    Examine the next file (from the list of files given in the
          command line).  If a number N is specified (not to be confused
          with the command N), the N-th next file is examined.

     P    Examine the previous file.  If a number N is specified, the N-th
          previous file is examined.

     =    Prints the name of the file being viewed and the byte offset of
          the bottom line being displayed.  If possible, it also prints the
          length of the file and the percent of the file above the last
          displayed line.

     -    Followed by one of the command line option letters (see below),
          this will toggle the setting of that option and print a message
          describing the new setting.

     V    Prints the version number of _l_e_s_s being run.

     q    Exits _l_e_s_s.

     The following two commands may or may not be valid, depending on your
     particular installation.

     v    Invokes an editor to edit the current file being viewed.  The
          editor is taken from the environment variable EDITOR, or defaults
          to "vi".

     ! shell-command
          Invokes a shell to run the shell-command given.

OPTIONS
     Command line options are described below.  Options are also taken from
     the environment variable "LESS".  (The environment variable is parsed
     before the command line, so command line options override the LESS
     environment variable.  Options may be changed while _l_e_s_s is running
     via the "-" command.) For example, if you like more-style prompting,
     to avoid typing "less -m ..." each time _l_e_s_s is invoked, you might
     tell _c_s_h:

     setenv LESS m

     or if you use _s_h:

     LESS=m; export LESS

     -s   The -s flag causes consecutive blank lines to be squeezed into a
          single blank line.  This is useful when viewing _n_r_o_f_f output.

     -t   Normally, forward searches start just after the top displayed
          line (that is, at the second displayed line).  Thus forward
          searches include the currently displayed screen.  The -t command
          line option causes forward searches to start just after the
          bottom line displayed, thus skipping the currently displayed
          screen.

     -m   Normally, _l_e_s_s prompts with a colon.  The -m command line option
          causes _l_e_s_s to prompt verbosely like _m_o_r_e, printing the file name
          and percent into the file.

     -M   The -M command line option causes _l_e_s_s to prompt even more
          verbosely than _m_o_r_e.

     -q   Normally, if an attempt is made to scroll past the end of the
          file or before the beginning of the file, the terminal bell is
          rung to indicate this fact.  The -q command line option tells
          _l_e_s_s not to ring the bell at such times.  If the terminal has a
          "visual bell", it is used instead.

     -Q   Even if -q is given, _l_e_s_s will ring the bell on certain other
          errors, such as typing an invalid character.  The -Q command line
          option tells _l_e_s_s to be quiet all the time; that is, never ring
          the terminal bell.  If the terminal has a "visual bell", it is
          used instead.

     -e   Normally the only way to exit less is via the "q" command.  The
          -e command line option tells less to automatically exit the
          second time it reaches end-of-file.

     -u   If the -u command line option is given, backspaces are treated as
          printable characters; that is, they are sent to the terminal when
          they appear in the input.

     -U   If the -U command line option is given, backspaces are printed as
          the two character sequence "^H".  If neither -u nor -U is given,
          backspaces which appear adjacent to an underscore character are
          treated specially: the underlined text is displayed using the
          terminal's hardware underlining capability.

     -w   Normally, _l_e_s_s uses a tilde character to represent lines past the
          end of the file.  The -w option causes blank lines to be used
          instead.

     -d   Normally, _l_e_s_s will complain if the terminal is dumb; that is,
          lacks some important capability, such as the ability to clear the
          screen or scroll backwards.  The -d flag suppresses this
          complaint (but does not otherwise change the behavior of the
          program on a dumb terminal).

     -p   Normally, _l_e_s_s will repaint the screen by scrolling from the
          bottom of the screen.  If the -p flag is set, when _l_e_s_s needs to
          change the entire display, it will clear the screen and paint
          from the top line down.

     -h   Normally, _l_e_s_s will scroll backwards when backwards movement is
          necessary.  The -h option specifies a maximum number of lines to
          scroll backwards.  If it is necessary to move backwards more than
          this many lines, the screen is repainted in a forward direction.
          (If the terminal does not have the ability to scroll backwards,
          -h0 is implied.)

     -x   The -x_n command line option sets tab stops every _n positions.
          The default for _n is 8.

     -b   The -b_n command line option tells _l_e_s_s to use a non-standard
          buffer size.  There are two standard (default) buffer sizes, one
          is used when a file is being read and the other when a pipe
          (standard input) is being read.  The current defaults are 5
          buffers for files and 12 for pipes.  (Buffers are 1024 bytes.)
          The number _n specifies a different number of buffers to use.  The
          -b may be followed by "f", in which case only the file default is
          changed, or by "p" in which case only the pipe default is
          changed.  Otherwise, both are changed.

     -c   Normally, when data is read by _l_e_s_s, it is scanned to ensure that
          bit 7 (the high order bit) is turned off in each byte read, and
          to ensure that there are no null (zero) bytes in the data (null
          bytes are turned into "@" characters).  If the data is known to
          be "clean", the -c command line option will tell _l_e_s_s to skip
          this checking, causing an imperceptible speed improvement.
          (However, if the data is not "clean", unpredicatable results may
          occur.)

     +    If a command line option begins with +, the remainder of that
          option is taken to be an initial command to _l_e_s_s. For example, +G
          tells _l_e_s_s to start at the end of the file rather than the
          beginning, and +/xyz tells it to start at the first occurence of
          "xyz" in the file.  As a special case, +<number> acts like
          +<number>g; that is, it starts the display at the specified line
          number (however, see the caveat under the "g" command above).  If
          the option starts with ++, the initial command applies to every
          file being viewed, not just the first one.


BUGS
     When used on standard input (rather than a file), you can move
     backwards only a finite amount, corresponding to that portion of the
     file which is still buffered.
SHAR_EOF
fi # end of overwriting check
if test -f 'less.uue'
then
	echo shar: will not over-write existing file "'less.uue'"
else
cat << \SHAR_EOF > 'less.uue'
begin 666 less.exe
M35K_ 3H !@ @ !X"__\]"  0.*63.P  '@    $ H@WL!:H[  #Y0@  $!#L
M!100[ 5>40                                                  
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                            58OLN $ HUH.4.@/
M $1$N ( 4.@& $1$B^5=PU6+[(/L AZ#?@0"=1]5BRY:#D71Y:$V  /%OP@ 
MZ,9#B2Y<#HDN.  #Q5U0@#Y"#@.<CAY #KZ  *R8B4;^ 7;^G5!S!UCH80'K
M7Y".!BP ,\"+R/?1B_CRKB8X!77Y@\<#B\CWT5?RKEY!0??96N@X 8O" \$%
M P E_O^#?@0!=0^+W#:.'P$&-@".'D .ZQ2.'BP \Z0RP*J+RN@M 8X>0 Z+
MV+Z! .LE@WX$ 748B\@$!"3^B]PVCA\VC@<!!C8 CAY #NL'N"!#JS/ JC/)
MK#MV_G8#ZWF0Z)4 =/!.B]:#?@0"=0@FB3^#PP+K#>C9 /\&6@Z.'D .B]BL
MZ&8 Z'4 @WX$ G4!JCMV_G<%Z%\ =>B#?@0"=04FQD7_ ('Y  %U*>BC (O8
M_S9 #E+_=@2#ZP*)'C@ 4^A/18/$"(O<-HX'B]@FBS^.'D .Z7W_@WX$ G4*
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
M &4L(&HL($-2(" @("H@($9O<G=A<F0@3B!L:6YE<RP@9&5F875L=" Q+@H 
M>2P@:R @(" @(" @*B @0F%C:W=A<F0@3B!L:6YE<RP@9&5F875L=" Q+@H 
M9" @(" @(" @(" @*B @1F]R=V%R9"!.(&QI;F5S+"!D969A=6QT(#$P(&]R
M(&QA<W0@3B!T;R!D(&]R('4@8V]M;6%N9"X* '4@(" @(" @(" @("H@($)A
M8VMW87)D($X@;&EN97,L(&1E9F%U;'0@,3 @;W(@;&%S="!.('1O(&0@;W(@
M=2!C;VUM86YD+@H <B @(" @(" @(" @(" @4F5P86EN="!S8W)E96XN"@!G
M(" @(" @(" @(" J("!';R!T;R!L:6YE($XL(&1E9F%U;'0@,2X* $<@(" @
M(" @(" @("H@($QI:V4@9RP@8G5T(&1E9F%U;'0@:7,@;&%S="!L:6YE(&EN
M(&9I;&4N"@ ](" @(" @(" @(" @("!0<FEN="!C=7)R96YT(&9I;&4@;F%M
M90H +W!A='1E<FX@(" @*B @4V5A<F-H(&9O<G=A<F0@9F]R($XM=&@@;V-C
M=7)E;F-E(&]F('!A='1E<FXN"@ _<&%T=&5R;B @(" J("!396%R8V@@8F%C
M:W=A<F0@9F]R($XM=&@@;V-C=7)E;F-E(&]F('!A='1E<FXN"@!N(" @(" @
M(" @(" J("!297!E870@<')E=FEO=7,@<V5A<F-H("AF;W(@3BUT:"!O8V-U
M<F5N8V4I+@H <2 @(" @(" @(" @(" @17AI="X* $UO<F4@:&5L<"XN+@!2
M(" @(" @(" @(" @("!297!A:6YT('-C<F5E;BP@9&ES8V%R9&EN9R!B=69F
M97)E9"!I;G!U="X* ' L("4@(" @(" @("H@(%!O<VET:6]N('1O($X@<&5R
M8V5N="!I;G1O('1H92!F:6QE+@H ;3QL971T97(^(" @(" @36%R:R!T:&4@
M8W5R<F5N="!P;W-I=&EO;B!W:71H(#QL971T97(^+@H )SQL971T97(^(" @
M(" @4F5T=7)N('1O(&$@<')E=FEO=7-L>2!M87)K960@<&]S:71I;VXN"@ M
M6" @(" @(" @(" @("!4;V=G;&4@82!F;&%G("A8(&UA>2!B92!O;F4@;V8@
M(B5S(BDN"@!%(%MF:6QE72 @(" @("!%>&%M:6YE(&$@;F5W(&9I;&4N"@!.
M(" @(" @(" @(" @("!%>&%M:6YE('1H92!N97AT(&9I;&4@*&9R;VT@=&AE
M(&-O;6UA;F0@;&EN92DN"@!0(" @(" @(" @(" @("!%>&%M:6YE('1H92!P
M<F5V:6]U<R!F:6QE("AF<F]M('1H92!C;VUM86YD(&QI;F4I+@H 5B @(" @
M(" @(" @(" @4')I;G0@=F5R<VEO;B!N=6UB97(N"@ A8V]M;6%N9" @(" @
M("!087-S97,@=&AE(&-O;6UA;F0@=&\@82!S:&5L;"!T;R!B92!E>&5C=71E
M9"X* &UE;6%C<P!V(" @(" @(" @(" @("!%9&ET('1H92!C=7)R96YT(&9I
M;&4@=VET:" D141)5$]2("AD969A=6QT("5S*2X*  !#;VUM86YD<R!M87)K
M960@=VET:" J(&UA>2!B92!P<F5C965D960@8GD@82!N=6UB97(L($XN"@H 
M $1O;B=T(&%S<W5M92!D871A(&ES(&-L96%N $%S<W5M92!D871A(&ES(&-L
M96%N $1O;B=T('%U:70@870@96YD+6]F+69I;&4 475I="!A="!E;F0M;V8M
M9FEL90!"86-K=V%R9',@<V-R;VQL(&QI;6ET(&ES("5D(&QI;F5S %)E<&%I
M;G0@8GD@<V-R;VQL:6YG(&9R;VT@8F]T=&]M(&]F('-C<F5E;@!297!A:6YT
M(&)Y('!A:6YT:6YG(&9R;VT@=&]P(&]F('-C<F5E;@!486(@<W1O<',@979E
M<GD@)60@<W!A8V5S $1O;B=T('-Q=65E>F4@;75L=&EP;&4@8FQA;FL@;&EN
M97, 4W%U965Z92!M=6QT:7!L92!B;&%N:R!L:6YE<P!&;W)W87)D('-E87)C
M:"!S=&%R=',@9G)O;2!B;W1T;VT@;V8@<V-R965N $9O<G=A<F0@<V5A<F-H
M('-T87)T<R!F<F]M('1O<"!O9B!S8W)E96X 1&ES<&QA>2!N;W1H:6YG(&9O
M<B!L:6YE<R!A9G1E<B!E;F0M;V8M9FEL90!$:7-P;&%Y('X@9F]R(&QI;F5S
M(&%F=&5R(&5N9"UO9BUF:6QE %!R;VUP="!W:71H(&$@8V]L;VX 4')O;7!T
M('=I=&@@82!M97-S86=E %!R;VUP="!W:71H(&$@=F5R8F]S92!M97-S86=E
M %)I;F<@=&AE(&)E;&P@9F]R(&5R<F]R<R!!3D0@870@96]F+V)O9@!2:6YG
M('1H92!B96QL(&9O<B!E<G)O<G,@8G5T(&YO="!A="!E;V8O8F]F $YE=F5R
M(')I;F<@=&AE(&)E;&P 56YD97)L:6YE9"!T97AT(&1I<W!L87EE9"!I;B!U
M;F1E<FQI;F4@;6]D90!!;&P@8F%C:W-P86-E<R!C875S92!O=F5R<W1R:6ME
M $)A8VMS<&%C97,@<')I;G0@87,@7D@  &,!   P)?H&%0<  &1!  #<)   
M     &4!   F)2H'1 <  &@$__^N(E@'     ' !   @('L'I@<  '@$"  Z
M)<T'     ',!  "\(N<'"@@  '0! 0 N)2<(4P@  '<! 0 D('P(J @  &T"
M   @)<X(X@CX"'$"  #:)!8)/@EJ"74"   L)7X)J@G*"4-!   B(       
M                 "5D(&)U9F9E<G, 7B5C "5C "(M)7,B.B!N;R!S=6-H
M(&9L86<N("!5<V4@;VYE(&]F("(E<R( (BTE8R(Z(&EN=F%L:60@9FQA9PH 
M;G5M8F5R(&ES(')E<75I<F5D(&%F=&5R("TE8PH  'X   #H%R @*'!R97-S
M(%)%5%523BD  "XN+G-K:7!P:6YG+BXN"@!#86YN;W0@<V5E:R!T;R!E;F0@
M;V8@9FEL90!#86YN;W0@9V5T('1O(&)E9VEN;FEN9R!O9B!F:6QE $9I;&4@
M:7,@;F]T('1H870@;&]N9P!$;VXG="!K;F]W(&QE;F=T:"!O9B!F:6QE $-A
M;FYO="!S965K('1O('1H870@<&]S:71I;VX 0VAO;W-E(&$@;&5T=&5R(&)E
M='=E96X@)V$G(&%N9" G>B< ;6%R:R!N;W0@<V5T $YO('!R979I;W5S(')E
M9W5L87(@97AP<F5S<VEO;@!);G9A;&ED('!A='1E<FX 3F]T:&EN9R!T;R!S
M96%R8V@ 4&%T=&5R;B!N;W0@9F]U;F0    E<P @*&9I;&4@)60@;V8@)60I
M "!B>71E("5L9  O)6QD " H)6QD)24I "!%3D0 ("T@3F5X=#H@)7,  "$ 
M"@!,97-S  ! *",I(&QE<W,@('9E<G-I;VX@-#@ 3E5,3"!A<F=U;65N= !R
M96=E>' @=&]O(&)I9P!O=70@;V8@<W!A8V4 =&]O(&UA;GD@*"D =6YM871C
M:&5D("@I '5N;6%T8VAE9" H*0!J=6YK(&]N(&5N9  J*R!O<&5R86YD(&-O
M=6QD(&)E(&5M<'1Y &YE<W1E9" J/RL :6YV86QI9"!;72!R86YG90!U;FUA
M=&-H960@6UT :6YT97)N86P@=7)P #\K*B!F;VQL;W=S(&YO=&AI;F< =')A
M:6QI;F<@7 !>)"Y;*"E\/RLJ7 !I;G1E<FYA;"!D:7-A<W1E<@!.54Q,('!A
M<F%M971E<@!C;W)R=7!T960@<')O9W)A;0!M96UO<GD@8V]R<G5P=&EO;@!C
M;W)R=7!T960@<&]I;G1E<G, :6YT97)N86P@9F]U;'5P  ! )@       .D%
M                                                            
M                                         - -.T-?1DE,15])3D9/
M                                @8&! 0$                     
M                                                            
M                                        .B  "@              
M    ( !X("]C( !#3TU34$5# "X +BX  , B  # (@$          @$     
M   & @       (0#         @0                                 
M                                                            
M                                                            
M       !   "                                                
M                                                            
M                                              !F#P          
M                                                         "  
M #M#7T9)3$5?24Y&3P [0U]&24Q%7TE.1D\         %A#L!280[ 4     
M                                       6 @(8#0D,# P'"/___Q(-
M$@+_*&YU;&PI "AN=6QL*0 K+2 C                        17)R;W(@
M,   3F\@<W5C:"!F:6QE(&]R(&1I<F5C=&]R>0      07)G(&QI<W0@=&]O
M(&QO;F< 17AE8R!F;W)M870@97)R;W( 0F%D(&9I;&4@;G5M8F5R    3F]T
M(&5N;W5G:"!C;W)E %!E<FUI<W-I;VX@9&5N:65D     $9I;&4@97AI<W1S
M $-R;W-S+61E=FEC92!L:6YK     $EN=F%L:60@87)G=6UE;G0  %1O;R!M
M86YY(&]P96X@9FEL97,     3F\@<W!A8V4@;&5F="!O;B!D979I8V4     
M $UA=&@@87)G=6UE;G0 4F5S=6QT('1O;R!L87)G90  4F5S;W5R8V4@9&5A
M9&QO8VL@=V]U;&0@;V-C=7( 56YK;F]W;B!E<G)O<@">$*80IQ#!$,(0PQ#$
M$,40UQ#I$/D0^A#[$ L1'1$>$1\1(!$L$3X1/Q% $4$14A%3$6<1:!%I$6H1
M@A&#$801A1&&$901I1&F$<01)0    T*                     (%</#Q.
M35-'/CX(  T*97)R;W(@,C P.#H@3F]T(&5N;W5G:"!S<&%C92!F;W(@87)G
M=6UE;G1S#0H  0 -"F5R<F]R(#(P,#$Z($YU;&P@<&]I;G1E<B!A<W-I9VYM
M96YT#0H    -"F5R<F]R(#(P,# Z(%-T86-K(&]V97)F;&]W#0H  P -"F5R
M<F]R(#(P,#,Z($EN=&5G97(@9&EV:61E(&)Y(# -"@ $  T*97)R;W(@,C P
M-#H@1$]3(#(N,"!O<B!L871E<B!R97%U:7)E9 T*)  )  T*97)R;W(@,C P
M.3H@3F]T(&5N;W5G:"!S<&%C92!F;W(@96YV:7)O;FUE;G0-"@ "  T*97)R
H;W(@,C P,CH@1FQO871I;F<@<&]I;G0@;F]T(&QO861E9 T* /___PT*
 
end
SHAR_EOF
fi # end of overwriting check
if test -f 'readme'
then
	echo shar: will not over-write existing file "'readme'"
else
cat << \SHAR_EOF > 'readme'
Port of less to msdos:

Less is a program similar to the Unix more command but is much more
useful. Read less.man for a good description of less and what it can
do for you.

The files included here will result in a full version of less
for use on msdos. This version of less has been tested on all the pc
systems that I could get my hands on. This includes monochrome, graphics,
(that includes systems with graphics cards and mono monitors), and color
graphics.

The following must be done to have less.exe work in its full glory:

	1.	Nothing if you don't want color when using a color monitor.
		To get the color use the set command such as:

			set less=C	(Case sensitive; c is another option)

		Do this prior to calling less. A command line option
		less -C <filename ...> will also get you color.

		NOTE: Only use the color option when using a color monitor.
		All other configurations need no special action.

		There are other less settings that can be used using the
		set command. Read less.man. The one I use is less=mC on
		an AT with enhanced monitor and ega card.

		Read on for the v command.

	2.	Less also has a v command that lets you can an editor from
		within less to edit the file that you are viewing at the
		time. The default is memacs which was taken from the Unix
		mod.sources. If you don't have it use the dos set command
		as follows to let less know which it is:

			set editor=your_editor

	4.	It is best to include the set commands in your autoexec.bat
		which will be executed when you boot up your system.

	5.	Less is a very useful utility. Read less.man and when in
		less the h command will put a description of the commands
		on the screen for you.

	6.	This version of less is named less13.exe for distribution.
		It replaces and other version that you have obtained from
		my posting of the executable. Accept no substitutes. When
		I get the time I will incorporate the changes to get up
		the distributed Unix version 61. If you post this to any
		bulletin board name any files associated with it with the
		version 13.(referring to the MSDOS control)

	7.	Less version 1.3 uses the system function but looks to see
		if you are using the swchar program that allows you to use
		the / rather than the \ character. The swchar state is changed
		before the system call if you are and then resets it so that
		it all becomes transparent to the user.

	8.	The source code for less is being posted to Net.sources.
		It is all ifdef'd so that it should compile on Unix systems
		also as is.

	9.	Version 1.3 corrects the following:
			The latest known to me fixes have been incorporated
			in the regexpression routines written by Henry
			Spencer and posted on the Unix news net.



			Dick Keily
			Eastman Kodak Company
			work: (716)477-1001
			unix: ...!seismo!rochester!kodak!keily

SHAR_EOF
fi # end of overwriting check
#	End of shell archive
exit 0