home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / intelmdsa / md2kerhlp.txt < prev    next >
Text File  |  2020-01-01  |  4KB  |  95 lines

  1. 27-Jan-84 20:31:24-EST,1153;000000000011
  2. Return-Path: <CHRIS@COLUMBIA-20.ARPA>
  3. Received: from CUCS20 by CU20B with DECnet; 27 Jan 84 20:31:23 EST
  4. Date: Fri 27 Jan 84 20:31:24-EST
  5. From: Chris Maio <CHRIS@CUCS20>
  6. Subject: MDS Kermit (finally!)
  7. To: sy.fdc@CU20B
  8.  
  9. The sources for ISIS-Kermit (ISIS is the CPM-like operating system for the
  10. 8080-based Intel MDS) are in PS:<CC.FDC.TEMP>, along with a control file that
  11. shows how they're linked together.  There isn't really any documentation
  12. around, but the code is simple enough that it's not hard to figure out what's
  13. going on.  Basically, it's just a 7-bit bare-bones (by 1982 standards) Kermit,
  14. based more or less on the earliest C version.  It doesn't allow wildcards, but
  15. you can specify multiple files on the "send" command line and receive multiple
  16. commands from another Kermit; there's also some crude but useful debugging code
  17. (the "d" command turns it on).
  18.  
  19. Sorry for the delay; I had to promise that the authors of the code would
  20. remain anonymous, but feel free to give my number (280-8122) to the recipients
  21. in case they have any questions about the MDS (in case theirs isn't really
  22. compatible).
  23.  
  24. - Chris
  25. -------
  26.  
  27. ----------------------------------------------------------------------------
  28. 28-Aug-1985
  29. From :  Hanh tuan Truong
  30.         Leigh Instruments ltd.
  31.         2680 Queensview Dr.
  32.         Ottawa , Ontario
  33.         K2B-8J9 CANADA
  34.  
  35.      There are 10 commands used in ISIS-Kermit :
  36.  
  37.         1. CONNECT      Connect to the host as a virtual terminal
  38.                         The format of CONNECT command is
  39.                                 ISIS-Kermit> Connect
  40.  
  41.         2. SEND         Send files from the MDS to the other Kermit.
  42.                         The format of SEND command is
  43.                                 ISIS-Kermit> Send Filename.Ext
  44.  
  45.         3. RECEIVE      Receive files from the other Kermit
  46.                         received filename has at most 6 characters
  47.                         The format of RECEIVE command is
  48.                                 ISIS-Kermit> Receive
  49.  
  50.         4. DEBUG        Display packet traffic , packet number
  51.                         packet contents.
  52.                         The format of DEBUG command is
  53.                                 ISIS-Kermit> Debug
  54.  
  55.       * 5. LSEND        Send files from the MDS to VAX-KERMIT .
  56.                         The format of LSEND command is
  57.                                 ISIS-Kermit> LSEND Listfile.Ext
  58.  
  59.                 NOTE : Listfile contains the filenames of files
  60.                        to be sent to the VAX . These filenames
  61.                        are seperated by spaces or cariage return.
  62.  
  63.       * 6. GET          Get files from the VAX to the MDS
  64.                         when VAX-KERMIT is in SERVER mode .
  65.                         The format of GET command is
  66.                                 ISIS-Kermit> Get Filename.Ext
  67.  
  68.       * 7. CWD          Change working directory on the VAX
  69.                         when VAX-KERMIT is in SERVER mode .
  70.                         The format of CWG command is
  71.                                 ISIS-Kermit> CWD [directory]
  72.  
  73.         8. EXIT         Exit from ISIS-Kermit
  74.                         The format of EXIT command is
  75.                                 ISIS-Kermit> Exit
  76.  
  77.       * 9. FINISH       Exit  from VAX-KERMIT
  78.                         when VAX-KERMIT is in SERVER mode .
  79.                         The format of FINISH command is
  80.                                 ISIS-Kermit> FINISH
  81.  
  82.       * 10. BYE         Log out from VAX
  83.                         when VAX-KERMIT is in SERVER mode .
  84.                         The format of BYE command is
  85.                                 ISIS-Kermit> BYE
  86.  
  87.  
  88.  NOTE :
  89.         - (*) New Commands for MDS-Kermit .
  90.         - Here are new procedures which implement the above new commamds :
  91.           HELP , SETDRNUM , INSERT , GETRECV , BYE , SBYE , SGET ,CWD
  92.           SCWD , FINISH , SFINI , LSEND .
  93.         - These commands can be typed in lower or upper case .
  94.  
  95.