home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / perqa / pqkermhlp.txt < prev    next >
Text File  |  2020-01-01  |  3KB  |  104 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. Perq file name          Contents
  86.  
  87. Connect232.Pas          Simple terminal emulator
  88. Kermit.Pas              Main program
  89. KermitError.Pas         Error routines
  90. KermitGlobals.Pas       Global variables, etc
  91. KermitHelp.Pas          Help display
  92. KermitParms.Pas         SET/SHOW parameters
  93. KermitRecv.Pas          Receive code
  94. KermitSend.Pas          Send code
  95. KermitUtils.Pas         Utilities
  96. Stdio.Pas               "Standard IO"
  97.  
  98. Contributed by:
  99.  
  100.           Peter Thew
  101.           Computer Centre
  102.           Australian Defence Force Academy
  103.           ACT   2600   Australia
  104.