home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pckermit / pckermithlp.txt < prev    next >
Text File  |  2020-01-01  |  5KB  |  99 lines

  1. KERMIT is a family of  programs that do reliable file transfer between 
  2. computers over TTY lines.  KERMIT can also be used to make the IBM PC 
  3. behave as a terminal for a mainframe.  These are the commands for the  
  4. 8086/8088 DOS version, KERMIT-86:
  5.  
  6.   BYE         When talking to a remote Kermit Server, this command shuts
  7.               down the server and logs it out.  It then exits from 
  8.               Kermit-86 to DOS.
  9.  
  10.   CONNECT     To make a "virutual terminal" connection to a remote system.
  11.               To break the connection and "escape" back to the PC, type
  12.               the escape sequence (CTRL-] C, that is Control rightbracket
  13.               followed immediately by the letter C.)
  14.  
  15.   EXIT        To return back to DOS. 
  16.  
  17.   FINISH      When talking to a remote Kermit Server, this command shuts
  18.               down the server but does not log you out on the remote host.
  19.  
  20.   HELP        To get a list of KERMIT commands.
  21.  
  22.   LOGOUT      When talking to a remote Kermit Server, this command shuts
  23.               down the server and logs it out.  This command is similar
  24.               to BYE, but leaves you at the Kermit-86 command level.
  25.  
  26.   RECEIVE     To accept a file from the remote system. 
  27.  
  28.   SEND        To send a file or group of files to the remote system. 
  29.  
  30.   SET         To establish system-dependent parameters.  The SET options 
  31.               are as follows: 
  32.  
  33.           BACKARROW           BACKSPACE/DELETE.  Determines which value
  34.                    Kermit will send to the host when a back-
  35.                    arrow is typed.  Default is DELETE.
  36.  
  37.               BAUD             To set terminal speed to 300, 1200, 1800, 
  38.                                2400, 4800 (default) and 9600.
  39.  
  40.               BELL             To ring bell after transfer has completed
  41.                                or has failed (default is ON).
  42.  
  43.               DEBUG            To set debug mode ON or OFF (default is OFF). 
  44.  
  45.               END-OF-LINE      To change the character used at the end of
  46.                                packets to something other than the default
  47.                                of CR.  It must be a digit between 0 and 31.
  48.  
  49.               ESCAPE           To change the escape sequence that lets you 
  50.                                return to the PC Kermit from the remote host.
  51.                                The default is CTRL-] c. 
  52.  
  53.               FILE-WARNING     ON/OFF, default is ON.  If ON, Kermit will warn
  54.                                you and rename an incoming file so as not to 
  55.                                write over a file that currently exists with the
  56.                                same name. 
  57.  
  58.               H19-EMULATION    Determines whether Kermit should emulate an
  59.                                H19 or have to PC run in "native" mode.
  60.                                The options are ON (default) and OFF.
  61.  
  62.               IBM              ON/OFF, default is OFF.  This flag should be
  63.                                ON only when transfering files between the PC 
  64.                                and an IBM VM/CMS system.  It also causes the 
  65.                                parity to be set appropriately and activates 
  66.                                local echoing.
  67.  
  68.           INCOMPLETE       DISCARD/KEEP.  If a file transfer terminates
  69.                    unexpectedly when receiving a file, should
  70.                    Kermit keep what managed to get across or
  71.                    discard it (default is to discard).  
  72.  
  73.               LOCAL-ECHO       ON/OFF, default is OFF.  This sets the duplex.
  74.                                It should be ON when using the IBM and OFF for
  75.                                the DEC-20.
  76.  
  77.               PARITY           EVEN, ODD, MARK, SPACE, or NONE.  NONE is the
  78.                                default but if the IBM flag is set, parity is
  79.                                set to MARK.  This flag selects the parity for
  80.                                outgoing and incoming characters during CONNECT
  81.                                and file transfer to match the requirements of 
  82.                                the host.
  83.  
  84.           PORT           1/2, default is 1.  Determines whether Kermit
  85.                    should use communications port 1 or 2.
  86.  
  87.   STATUS      To see the values of parameters that can be modified 
  88.               via the SET command.
  89.  
  90. (Installation notes:)
  91.  
  92. KERMIT-86 runs on the IBM PC or XT under PC DOS 1.1 or 2.0; The same program
  93. is known to run on "IBM-PC-Compatible" systems like the Compaq portable, and
  94. there is a separate version of KERMIT-86 for the Heath/Zenith Z100.
  95.  
  96. PCKERMIT.ASM is the IBM Macro Assembler source file, which can be assembled
  97. on the IBM PC or Z100.  PCKERMIT.FIX is a printable encoding of the executable
  98. program, which can be downloaded to the PC using PCKSEND and PCKGET.
  99.