home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / most423.zip / aaa_read.me next >
Text File  |  1994-03-03  |  2KB  |  72 lines

  1. The following files should be present in this distribution:
  2.  
  3.     aaa_read.me   ---  This file
  4.  
  5.     most.c main.c buffer.c file.c window.c display.c sysdep.c keym.c
  6.     search.c help.c edit.c dir.c cmd.c line.c --- C files
  7.  
  8.     most.h buffer.h file.h window.h display.h sysdep.h keym.h
  9.     search.h externs.h  --- Header files
  10.  
  11.     makefile.dist --  makefile for unix systems
  12.     make.com      --  `makefile' for VMS
  13.     rtl.opt       --  options file for VMS linking
  14.     changes.txt   --  summary of recent changes
  15.     most.doc      --  main documentation for most
  16.     most.1        --  nroff source
  17.  
  18.  
  19. To make MOST requires an ansi compatable c compiler.  It compiles fine with
  20. `cc most.c' on Ultrix and VMS, and `CC +V most.c -o most' on a sun4.
  21. Other than this, I do not know what else to say.
  22.  
  23.                           INSTALLATION INSTRUCTIONS
  24.  
  25. On VMS, type `@make' at the DCL prompt to build most.  If you are using GCC,
  26. type `@make GCC'. On unix, `make' should work--- if not, the makefile may
  27. need edited.
  28.  
  29. Then to run most, just type `most "filename"' (eg. `most login.com').  On
  30. VMS, this requires that MOST first be installed as a foreign command.  This
  31. means that you must first type:
  32.  
  33. $  most :== device:[dir.containing.most]most.exe
  34.  
  35. MOST has online help which is invoked with the `h' key.  To get online help
  36. functioning properly, the logical name `MOST_HELP' must be defined to point
  37. the correct doc file.  To do this, put the following in your .cshrc (or equiv)
  38. file:
  39.  
  40. setenv MOST_HELP <directory of most.help>most.doc
  41.  
  42. and if you are on VMS put
  43.  
  44. $ define/nolog MOST_HELP <directory of most.help>MOST.DOC
  45.  
  46. For example, I have
  47.  
  48. setenv MOST_HELP /u2/davis/most/most.doc
  49.  
  50. in my .cshrc on a unix host.
  51.  
  52. The other logical that most reads is `MOST_SWITCHES'.  This allows the user to
  53. run MOST with whatever switches are defined by this logical.  I use most with
  54. the -s and -c switches so I have
  55.  
  56. setenv MOST_SWITCHES "-sca"
  57.  
  58. in my .cshrc file for unix and
  59.  
  60. $ define/nolog MOST_SWITCHES "-sca"
  61.  
  62. in my login.com file on VMS.
  63.  
  64.  
  65. I suggest that you first build MOST then view the doc file using MOST (`most
  66. most.doc').  If you need help, hit the `h' key from within MOST.  The `h' key
  67. simply locates the part of the doc file that describes what the various key
  68. do.  One person has suggested that I use a one page help screen.  However, I
  69. chose not to do this.  Most has very few key sequences to memorize and the one
  70. page help screen will quickly outgrow it usefulness.
  71.  
  72.