home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c / pqkerm.hlp < prev    next >
Text File  |  2020-01-01  |  3KB  |  112 lines

  1. PERQ KERMIT
  2. -----------
  3.  
  4.  
  5. The Pascal version of Kermit for RT-11 systems, written at the University of
  6. Toronto,  has  been  heavily  modified  for  the ICL/Three Rivers PERQ.  The
  7. command parsing has been improved by using the PERQ's parsing routines which
  8. allow  pop-up  menus  and  command  files.   Binary  file  transfer has been
  9. included (but it is rather simple and needs to be improved).
  10.  
  11. Some features that are to be added in the future are:
  12.  
  13.      .    Server commands
  14.      .    VT100 emulation during CONNECTS.
  15.      .    Pop-up menus for all commands
  16.             (eg. SET --> SPEED --> baud-rates)
  17.      .    General  code clean up, including faster disk I/O using FileSystem
  18.           routines.
  19.  
  20. PERQ Kermit commands
  21. --------------------
  22.  
  23.    CONNECT
  24.  
  25. Connect the PERQ to another host.  This allows you to log  into  other
  26. systems.
  27.  
  28.    EXIT
  29.  
  30. Exit from KERMIT back to the PERQ operating system.
  31.  
  32.    HELP
  33.  
  34. Print instructions on various commands available in KERMIT.
  35.  
  36.    QUIT
  37.  
  38. Same as EXIT.
  39.  
  40.    RECEIVE <optional file-name>
  41.  
  42. Receive a file from the remote host. If an incoming file name is not  legal,
  43. then  attempt  to  transform  it  to  a similar legal name, e.g. by deleting
  44. illegal or excessive characters. If the file  already  exists,  it  will  be
  45. superceded unless WARNING is ON.
  46.  
  47.    SEND <file-specification>
  48.  
  49. Sends a file from the PERQ to the remote host.  The  name  of  the  file  is
  50. passed  to  the  remote host in a special control packet, so that the remote
  51. host can store it with the same name. Wildcards are not yet supported.
  52.  
  53.  
  54.    SET <keyword>
  55.  
  56. Change various  system-dependent  parameters.  The  following  features  are
  57. available with the SET command :
  58.  
  59.          SPEED <rate>       Change the PERQ's line speed
  60.          DEBUG ON|OFF       Print debug information
  61.          ESCAPE <octal>     Change the CONNECT escape character
  62.          WARNING ON|OFF     Give warning when overwriting existing files
  63.          LOCAL ON|OFF       Echo CONNECT typein locally
  64.          VERBOSE ON|OFF     Display Kermit's actions
  65.          EIGHT-BIT ON|OFF   Allow eight bit file transfer
  66.  
  67.  
  68.    SHOW <keyword>
  69.  
  70. Display various system-dependent parameters established by the SET  command.
  71. The  keyword  may  be  one  of  the  SET  keywords or the keyword ALL, which
  72. displays all of the parameters.
  73.  
  74.    STATISTICS
  75.  
  76. Display some statistics about Kermit's operations.
  77.  
  78.  
  79.  
  80.  
  81.  
  82. Kermit files
  83. ------------
  84.  
  85. The files are all concatenated together for distribution purposes, separated
  86. by formfeeds (Control-L), with the file name in a comment at the top of each
  87. file, for instance
  88.  
  89.     (* <<<Connect232.Pas>>> *)
  90.  
  91. The files are:
  92.  
  93. Perq file name          Contents
  94.  
  95. Connect232.Pas          Simple terminal emulator
  96. Kermit.Pas              Main program
  97. KermitError.Pas         Error routines
  98. KermitGlobals.Pas       Global variables, etc
  99. KermitHelp.Pas          Help display
  100. KermitParms.Pas         SET/SHOW parameters
  101. KermitRecv.Pas          Receive code
  102. KermitSend.Pas          Send code
  103. KermitUtils.Pas         Utilities
  104. Stdio.Pas               "Standard IO"
  105.  
  106. Contributed by:
  107.  
  108.           Peter Thew
  109.           Computer Centre
  110.           Australian Defence Force Academy
  111.           ACT   2600   Australia
  112.