home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / kerm-mgb.lzh / ZKR.DOC next >
Text File  |  1990-04-24  |  3KB  |  68 lines

  1.      --- Kermit-MGlobal Documentation  4/24/90 ---
  2.  
  3.      The two files, ZKR.ROU and ZKRX.GLB, contain routines and globals for
  4. running Kermit under CCSM.  Kermit is a file transfer protocol designed
  5. originally at Columbia University for transfer of files among a wide variety
  6. of hardware and operating systems.  It is rather slow but very general purpose.
  7. Kermit-M was developed at Cornell School of Veterinary Medicine to run
  8. under Intersystems' M/11 operating system for PDP-11s.  I have adapted
  9. Kermit-M to work with CCSM under MS-DOS.
  10.       The major enhancement of this version of Kermit-MGlobal is the ability
  11. to transfer MS-DOS binary files from within the MUMPS environment.  By binary
  12. file, I mean any MS-DOS file.  I have used this version of Kermit-MGlobal to
  13. transfer an updated version of MUMPS.EXE from one computer to another via
  14. modem!
  15.       In addition, Kermit-MGlobal allows transfer of MUMPS routines, MUMPS
  16. globals, and MS-DOS ASCII (sequential text) files, bi-directionally.
  17.       Help is available in Kermit-MGlobal as well.
  18.       To load Kermit-MGlobal:
  19.  
  20.       Restore the routines in ZKR.ROU by running ^%RRMMR. There is one system
  21. routine, ^%ROU, which establishes a routine directory in ^UTILITY("ROU",
  22. and is used by Kermit-MGlobal.
  23.       Restore the globals in ZKRX.GLB by running ^%GI (found in ZKR.ROU).
  24.       Enter Kermit-MGlobal by typing
  25.       D ^ZKR
  26.       at any direct (programmer mode) prompt.
  27.       Kermit-M will respond by displaying
  28. Kermit-M>
  29.       You may ask for help by entering HELP.
  30.       Certain default settings for baud rate, stop bits, parity, etc. are
  31. in file ZKRUP after INITPAR.  You can change some of these defaults from
  32. Kermit's command prompt.
  33.       A typical session with Kermit-M will look like this (comments in curly
  34. braces):
  35.  
  36. D ^ZKR                    {invoke Kermit}
  37. Kermit-M>SET LINE 8       {use device 8}
  38. Kermit-M>SET BAUD 2400    {set baud rate}
  39. Kermit-M>CONNECT          {connect to device 8}
  40.    You are now connected to the other computer.  You may return to your current
  41. computer by typing Ctrl-Y and C.
  42.    ATDT555-1212           {dial remote computer}
  43.    CONNECT 2400           {response from remote}
  44.    ^C                     {you typed Ctrl-C; this is not actually displayed}
  45.    WELCOME TO CCSM V. 4.93 LINE #9  {reply from remote site}
  46.    D ^ZKR                 {start up Kermit-M at remote site}
  47.    Kermit-M>REC           {tell remote site to receive files}
  48.    starting RECEIVE command...  {remote site ready to receive}
  49.    ^YC                    {Type Ctrl-Y followed by C to escape back to local}
  50.    You are now back in local mode.  You still own the line.
  51. Kermit-M>SEND *.*         {Send all Kermit-M files to remote site}
  52.    Sending file ZKR.MMP...
  53.  
  54. and so forth.  Kermit-M contains a complete directory structure.  Routines,
  55. globals, ASCII text files, and binary files are moved in and out of the
  56. directory structure with a series of commands that begin by entering "MUMPS"
  57. at the Kermit-M prompt.
  58.    Kermit-M understands abbreviations.  You need not type "SET LINE 8";
  59. "SET LI 8" will do as well, although SE LINE 8 will fail because SE can
  60. abbreviate either SEND or SET, both legal Kermit-M directives.  A complete
  61. list of Kermit-M directives can be obtained by typing HELP at the Kermit-M
  62. prompt.
  63.    Please direct any questions on the use of Kermit-MGlobal to the bulletin
  64. board.
  65.   -- Peter Wayne
  66.  
  67.  
  68.