home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / b / vmsusr.hlp < prev    next >
Text File  |  2020-01-01  |  45KB  |  1,144 lines

  1. 1 ASCII_Set
  2.  Oct Char     Oct Char     Oct Char     Oct Char
  3.  --- ----     --- ----     --- ----     --- ----
  4.    0 NUL       40 SP       100  @       140  `  
  5.    1 SOH       41  !       101  A       141  a  
  6.    2 STX       42  "       102  B       142  b  
  7.    3 ETX       43  #       103  C       143  c  
  8.    4 EOT       44  $       104  D       144  d  
  9.    5 ENQ       45  %       105  E       145  e  
  10.    6 ACK       46  &       106  F       146  f  
  11.    7 BEL       47  '       107  G       147  g  
  12.   10 BS        50  (       110  H       150  h  
  13.   11 HT        51  )       111  I       151  i  
  14.   12 LF        52  *       112  J       152  j  
  15.   13 VT        53  +       113  K       153  k  
  16.   14 FF        54  ,       114  L       154  l  
  17.   15 CR        55  -       115  M       155  m  
  18.   16 SO        56  .       116  N       156  n  
  19.   17 SI        57  /       117  O       157  o  
  20.   20 DLE       60  0       120  P       160  p  
  21.   21 DC1       61  1       121  Q       161  q  
  22.   22 DC2       62  2       122  R       162  r  
  23.   23 DC3       63  3       123  S       163  s  
  24.   24 DC4       64  4       124  T       164  t  
  25.   25 NAK       65  5       125  U       165  u  
  26.   26 SYN       66  6       126  V       166  v  
  27.   27 ETB       67  7       127  W       167  w  
  28.   30 CAN       70  8       130  X       170  x  
  29.   31 EM        71  9       131  Y       171  y  
  30.   32 SUB       72  :       132  Z       172  z  
  31.   33 ESC       73  ;       133  [       173  {  
  32.   34 FS        74  <       134  \       174  |  
  33.   35 GS        75  =       135  ]       175  }  
  34.   36 RS        76  >       136  ^       176  ~  
  35.   37 US        77  ?       137  _       177 DEL 
  36. 1 BYE
  37.  
  38.  This command will cause Kermit-32 (when in local mode)  to  tell  the
  39.  other  Kermit  (which  should  be in server mode) to exit from Kermit
  40.  and, if applicable, terminate  its  job  (or  process,  etc.).   When
  41.  Kermit-32  receives  the  acknowledgement that this is being done, it
  42.  will exit to VAX/VMS.
  43.  
  44.            Kermit-32>BYE
  45. 1 CONNECT
  46.  
  47.  The CONNECT command will  allow  you  to  connect  in  as  a  virtual
  48.  terminal over the line that was specified by the SET LINE command, or
  49.  to the terminal line specified in the  command.   The  terminal  line
  50.  must  be  one  which  is accessible to the users process.  This means
  51.  that the applicable protection code for the terminal must  have  been
  52.  set  to allow your process to access it (done by the system manager).
  53.  If a session log file was previously specified, a new version of  the
  54.  file  will be created, and all type-out logged in the file.  The file
  55.  will  be  closed  when  the  command  is  completed  (by  use  of  an
  56.  escape-character "C" command).  The format of the CONNECT command is:
  57.  
  58.            Kermit-32>CONNECT
  59.       or
  60.            Kermit-32>CONNECT terminal-name
  61.  
  62.  where 'terminal-name' is the terminal line name to be used.
  63. 2 Escape_Character
  64.  
  65.  This character is  used  to  issue  a  limited  set  of  commands  to
  66.  Kermit-32  after  using  the  CONNECT  command.  Its default value is
  67.  CTRL-] (35 octal, ASCII GS) and can be changed  via  the  SET  ESCAPE
  68.  command.   It  is  usually  a  good  idea  to  set  this character to
  69.  something which is not used (or at least not used very much)  on  the
  70.  system  to which Kermit-32 is CONNECTing.  The command that is issued
  71.  is determined by  the  character  that  is  typed  after  the  escape
  72.  character.   The  following  characters  are  recognized by Kermit-32
  73.  after the escape character:
  74.  
  75.            C - Return to VAX/VMS Kermit-32
  76.            Q - Suspend logging to session log file (if any)
  77.            R - Resume logging to session log file (if any)
  78.            S - Show status
  79.            0 - Send a null
  80.            ?  - Type this text
  81.       CTRL-] - Send escape character
  82.  
  83.  Any other character will cause Kermit-32 to  ring  the  bell  at  the
  84.  local   terminal.   The  escape-character  S  (show  status)  command
  85.  displays the terminal line being used, the escape character  and  the
  86.  settings of local echo, parity and session logging.
  87. 1 Control_Chars
  88.  
  89.  During a file transfer (GET, RECEIVE or SEND commands) with Kermit-32
  90.  in  local mode the following control characters can be used to affect
  91.  the transfer in progress:
  92.  
  93.            CTRL-A - Print a brief status report
  94.            CTRL-C - Abort the protocol
  95.            CTRL-D - Turn logging to the debugging log file on/off
  96.            CTRL-M - (or RETURN) Force a protocol timeout
  97.            CTRL-X - Abort the file currently being transfered
  98.            CTRL-Z - Abort the file group currently being transfered
  99.  
  100.  The CTRL-A status report displays the protocol state and  the  number
  101.  of NAKs sent and received.
  102. 1 EXIT
  103.  
  104.  The EXIT command will cause Kermit-32 to  return  to  command  level.
  105.  This  command  is  the  same as the QUIT command.  An example of this
  106.  command is:
  107.  
  108.            Kermit-32>EXIT
  109. 1 FINISH
  110.  
  111.  This command will cause Kermit-32 (when in local mode)  to  tell  the
  112.  other  Kermit  (which  should be in server mode) to exit from Kermit.
  113.  After  receiving  the  acknowledgement  that  this  is  being   done,
  114.  Kermit-32 will prompt for another command.
  115.  
  116.            Kermit-32>FINISH
  117. 1 GET
  118.  
  119.  The GET command is used to have a local mode Kermit-32 request a file
  120.  from  a  remote  Kermit server.  Kermit-32 must be running as a local
  121.  Kermit (i.e., a SET LINE command must  have  been  done).   Kermit-32
  122.  will  then  request the other Kermit (which must be running in server
  123.  mode) to transfer the specified file (or set of files) to  Kermit-32.
  124.  The  file  specification must be in the format of the system on which
  125.  the server Kermit is running.  The format of the command is:
  126.  
  127.            Kermit-32>GET file-spec
  128.  
  129.  Where 'file-spec' is any valid file specification on  the  system  on
  130.  which the server Kermit is running.
  131. 1 HELP
  132.  
  133.  Typing HELP alone  prints  a  brief  summary  of  Kermit-32  and  its
  134.  commands.  You can also type
  135.  
  136.            Kermit-32>HELP topic [subtopic]...
  137.  
  138.  for any Kermit-32 command, e.g.  "help send" or "help set parity"  to
  139.  get more detailed information about a specific command.
  140. 1 LOCAL
  141.  
  142.  This command allows the user of Kermit-32 to perform various  actions
  143.  on  the  user's  system.   These  commands  provide  for  listing the
  144.  contents of a directory, deleting files, typing files, displaying the
  145.  amount of disk space used, etc.  Many of these commands are performed
  146.  by spawning a subprocess to execute the  corresponding  DCL  command;
  147.  therefore,  the  standard  parameters and qualifiers which DCL allows
  148.  may be used.
  149.  
  150.            Kermit-32>LOCAL keyword arguments
  151.  
  152.  Where 'keyword' is the name of the command, and 'arguments'  are  the
  153.  optional arguments for the command.
  154. 2 COPY
  155.  
  156.  This causes Kermit-32 to make a copy of  the  specified  file.   This
  157.  command  uses  the  standard DCL COPY command.  Any options valid for
  158.  DCL's COPY command may be used.
  159.  
  160.            Kermit-32>LOCAL COPY old-local-file
  161.            New file:  new-local-file
  162.  
  163.  Where 'old-local-file' is the name of the file you wish to copy,  and
  164.  'new-local-file' is the name for the copy.
  165. 2 CWD
  166.  
  167.  This command (short for "Change Working Directory") causes  Kermit-32
  168.  to  change  the  default  directory that will be used for files whose
  169.  specification does not include the directory  information.   This  is
  170.  similar to the DCL SET DEFAULT command.  If no device or directory is
  171.  given, the default device and directory is set back to that which was
  172.  being used when Kermit-32 was started.
  173.  
  174.            Kermit-32>LOCAL CWD local-directory-spec
  175.       or
  176.            Kermit-32>LOCAL CWD
  177.  
  178.  Where 'local-directory-spec' is the device and/or  directory  portion
  179.  of  a  standard  VAX/VMS  file specification.  It may include logical
  180.  names, but not wild-cards.
  181. 2 DELETE
  182.  
  183.  This causes Kermit-32 to delete the specified file(s).  This uses the
  184.  standard DCL DELETE command.
  185.  
  186.            Kermit-32>LOCAL DELETE file-spec
  187.  
  188.  Where 'file-spec' is a valid VAX/VMS file specification.
  189. 2 DIRECTORY
  190.  
  191.  This causes Kermit-32 to display a directory listing.  This uses  the
  192.  standard DCL DIRECTORY command.
  193.  
  194.            Kermit-32>LOCAL DIRECTORY file-spec
  195.       or
  196.            Kermit-32>LOCAL DIRECTORY
  197.  
  198.  Where 'file-spec' is a valid VAX/VMS file specification.
  199. 2 DISK_USAGE
  200.  
  201.  This causes Kermit-32 to display the amount of disk  space  used  and
  202.  available  for  the  given  UIC (or the user's UIC if none is given).
  203.  This uses the standard DCL SHOW QUOTA command.
  204.  
  205.            Kermit-32>LOCAL DISK_USAGE uic
  206.       or
  207.            Kermit-32>LOCAL DISK_USAGE
  208.  
  209.  Where 'uic' is a UIC specification (in square brackets).  LOCAL SPACE
  210.  is a synonym for the LOCAL DISK_USAGE command.
  211. 2 HELP
  212.  
  213.  This causes Kermit-32 to display the help message which it  sends  as
  214.  the  reply  when  it receives a "REMOTE HELP" command in server mode.
  215.  This describes the REMOTE commands which Kermit-32 implements.
  216.  
  217.            Kermit-32>LOCAL HELP
  218. 2 HOST
  219.  
  220.  This command requests Kermit-32 to perform the specified  command  as
  221.  if  it  were  typed  by  the  user on a terminal.  Any results of the
  222.  command will be printed on  the  user's  terminal.   Note  that  this
  223.  should only be used for commands which will not require any more user
  224.  input, since there will be no way for the user to interact  with  the
  225.  subprocess to supply more input.  This works by spawning a subprocess
  226.  (much like the DCL SPAWN command) to perform the command.
  227.  
  228.            Kermit-32>LOCAL HOST command
  229.  
  230.  Where 'command' is any valid DCL command.
  231. 2 RENAME
  232.  
  233.  This command causes Kermit-32 to change the name  of  a  file.   This
  234.  uses the standard DCL RENAME command.
  235.  
  236.            Kermit-32>LOCAL RENAME old-local-file
  237.            New file:  new-local-file
  238.  
  239.  Where 'old-local-file' is the name of the file  to  be  renamed,  and
  240.  'new-local-file' is the new name for the file.
  241. 2 SEND_MESSAGE
  242.  
  243.  This command causes Kermit-32 to send a short (one line)  message  to
  244.  the  given  terminal.   Because this uses the DCL REPLY command, OPER
  245.  privilege is needed.
  246.  
  247.            Kermit-32>LOCAL SEND_MESSAGE terminal-name
  248.            Message:  message-text
  249.  
  250.  Where  'terminal-name'  is  a  valid  name  for   a   terminal,   and
  251.  'message-text' is the message to be sent.
  252. 2 TYPE
  253.  
  254.  This causes  Kermit-32  to  display  the  specified  file(s)  on  the
  255.  terminal.
  256.  
  257.            Kermit-32>LOCAL TYPE file-spec
  258.  
  259.  Where 'file-spec' is a valid VAX/VMS file specification.
  260. 2 WHO
  261.  
  262.  This displays the output of a DCL SHOW SYSTEM command.
  263.  
  264.            Kermit-32>LOCAL WHO
  265. 1 LOG
  266.  
  267.  The LOG command allows the user to specify the file names to be  used
  268.  for  the  various  log files Kermit-32 is capable of creating.  A LOG
  269.  command without a file specification will cause no log file  of  that
  270.  type to be created.
  271.  
  272.            Kermit-32>LOG log-type file-spec
  273.       or
  274.            Kermit-32>LOG log-type
  275.  
  276.  Where 'log-type' is DEBUG, SESSION, or TRANSACTION,  and  'file-spec'
  277.  is  the  file  specification  to  use  for that type of log file.  If
  278.  file-spec does not  specify  a  file-type  Kermit-32  will  supply  a
  279.  default of .LOG.  If 'file-spec' is not present, that type of logging
  280.  is disabled.
  281. 2 DEBUG
  282.  
  283.  The LOG DEBUG command sets the file specification to be used for  the
  284.  debugging  log file.  This file will be used for the debugging output
  285.  produced when a SET DEBUG ON command is done.  A new version  of  the
  286.  file is created each time a transfer command is performed, and closed
  287.  upon the completion of the transfer command.
  288.  
  289.            Kermit-32>LOG DEBUG file-spec
  290.       or
  291.            Kermit-32>LOG DEBUG
  292.  
  293.  Where 'file-spec' is the file specification to use for the  debugging
  294.  log  file.   If file-spec does not specify a file-type Kermit-32 will
  295.  supply a default  of  .LOG.   If  'file-spec'  is  not  present,  the
  296.  debugging log file is disabled.
  297. 2 SESSION
  298.  
  299.  The LOG SESSION command sets the file name to be used for a log  file
  300.  of  a  "CONNECT" session.  A new version of this file is created each
  301.  time the CONNECT command is used, and closed when the CONNECT command
  302.  finishes  (as  a  result of the escape command to close the session).
  303.  All output to the controlling terminal will be logged in the  session
  304.  log file.
  305.  
  306.            Kermit-32>LOG SESSION file-spec
  307.       or
  308.            Kermit-32>LOG SESSION
  309.  
  310.  Where 'file-spec' is the file specification to use  for  the  session
  311.  log  file.   If file-spec does not specify a file-type Kermit-32 will
  312.  supply a default of .LOG.  If 'file-spec' is not present, the session
  313.  log file is disabled.
  314. 2 TRANSACTION
  315.  
  316.  The LOG TRANSACTION command sets the name of the file to be used as a
  317.  transaction  log  file.   A  new version of this file is created each
  318.  time  a  transfer  command  is  given  (SEND,  GET,  SERVER,   etc.).
  319.  Information about the transfer is logged in this file.  This includes
  320.  the names of the files being transferred, any errors, etc.
  321.  
  322.            Kermit-32>LOG TRANSACTION file-spec
  323.       or
  324.            Kermit-32>LOG TRANSACTION
  325.  
  326.  Where  'file-spec'  is  the  file  specification  to  use   for   the
  327.  transaction  log  file.   If  file-spec  does not specify a file-type
  328.  Kermit-32 will supply a default  of  .LOG.   If  'file-spec'  is  not
  329.  present, the transaction log file is disabled.
  330. 1 LOGOUT
  331.  
  332.  This command will cause Kermit-32 (when in local mode)  to  tell  the
  333.  other  Kermit  (which  should  be in server mode) to exit from Kermit
  334.  and, if applicable, terminate  its  job  (or  process,  etc.).   When
  335.  Kermit-32  receives  the  acknowledgement that this is being done, it
  336.  will prompt for another command.
  337.  
  338.            Kermit-32>LOGOUT
  339. 1 PUSH
  340.  
  341.  The PUSH command spawns a DCL subprocess which allows you to interact
  342.  with DCL without exiting Kermit-32.
  343. 1 QUIT
  344.  
  345.  This command will cause Kermit-32 to return to command  level.   This
  346.  is the same as the EXIT command.
  347.  
  348.            Kermit-32>QUIT
  349. 1 RECEIVE
  350.  
  351.  The RECEIVE command is used to put Kermit-32 into remote mode waiting
  352.  for  a  single file transfer transaction.  This is most useful if the
  353.  other Kermit does not support local  server  commands.   If  no  file
  354.  specification   is   given,   Kermit-32   will   use   whatever  file
  355.  specification is supplied by the other Kermit  (suitably  altered  to
  356.  conform  to  VAX/VMS  standards).   If a file specification is given,
  357.  Kermit-32 will use that file specification instead of  that  supplied
  358.  by  the  other Kermit.  This is most useful when the file name on the
  359.  other system is such that it does not map well into  a  VAX/VMS  file
  360.  specification.   Note  that  if  the other Kermit sends more than one
  361.  file, the same name will be used for all of them.  Only  the  version
  362.  numbers   will  be  different.   Therefore,  it  is  best  to  use  a
  363.  file-specification on this command only when  transferring  a  single
  364.  file.  The format of the command is:
  365.  
  366.            Kermit-32>RECEIVE
  367.       or
  368.            Kermit-32>RECEIVE file-spec
  369.  
  370.  Where 'file-spec' is any valid VAX/VMS file specification.
  371. 1 REMOTE
  372.  
  373.  This command allows the user of Kermit-32 (in  local  mode)  to  give
  374.  various  commands to the other Kermit (which must be in server mode).
  375.  These commands provide for  listing  the  contents  of  a  directory,
  376.  deleting  files,  typing  files,  displaying the amount of disk space
  377.  used, etc.  Note that not all server Kermits  support  all  commands,
  378.  but  all  server  Kermits  should  respond  with a message saying the
  379.  command is not implemented if it does not support it.
  380.  
  381.            Kermit-32>REMOTE keyword arguments
  382.  
  383.  Where 'keyword' is the name of the command, and 'arguments'  are  the
  384.  optional arguments for the command.
  385. 2 COPY
  386.  
  387.  This causes Kermit-32 to request that the server Kermit make  a  copy
  388.  of  the  specified file.  Both the old and new files are files on the
  389.  server's system - no file transfer  between  systems  is  done.   The
  390.  server  Kermit  should  respond  with some indication that either the
  391.  file was successfully copied, or with an error  message.   Note  that
  392.  some  Kermit's  will allow wild-carded copies, while others will only
  393.  allow a single file to be copied per command.
  394.  
  395.            Kermit-32>REMOTE COPY old-remote-file
  396.            New file:  new-remote-file
  397.  
  398.  Where 'old-remote-file' is the name of the file you wish to copy, and
  399.  'new-remote-file' is the name for the copy.
  400. 2 CWD
  401.  
  402.  This command (short for "Change Working Directory") causes  Kermit-32
  403.  to request that the server Kermit change the default directory (path,
  404.  device, etc.) that will be used for files  whose  specification  does
  405.  not  include  the directory information.  For some systems a password
  406.  can be supplied which will allow access to the new directory.   Since
  407.  Kermit-32 can not know whether the server Kermit requires a password,
  408.  it will always ask for one.  If no  directory  is  specified  in  the
  409.  command, the server Kermit will set the default directory back to the
  410.  users default.  This may be either the directory which is the default
  411.  when a job created, or the default directory which was in effect when
  412.  the server Kermit was started.  The server Kermit should respond with
  413.  a  message  which  indicates where the new default directory has been
  414.  set, or with an error message.
  415.  
  416.            Kermit-32>REMOTE CWD remote-directory-spec
  417.            Password:  password for remote directory
  418.       or
  419.            Kermit-32>REMOTE CWD
  420.  
  421.  Where 'remote-directory-spec' is a string which is  acceptable  as  a
  422.  directory specification for the server system.  The 'password' is any
  423.  string which is required as  a  password  for  access  to  the  given
  424.  directory.  The password will not be echoed.
  425. 2 DELETE
  426.  
  427.  This causes Kermit-32 to request the  server  Kermit  to  delete  the
  428.  specified  file  (or  files  if  the server Kermit supports wild-card
  429.  deletes).  The server Kermit should respond with a message indicating
  430.  whether the file (or files) has been deleted.
  431.  
  432.            Kermit-32>REMOTE DELETE file-spec
  433.  
  434.  Where 'file-spec' is  a  valid  file  specification  for  the  remote
  435.  Kermit's system.
  436. 2 DIRECTORY
  437.  
  438.  This causes Kermit-32 to request a directory listing from the  server
  439.  Kermit.  The directory listing will be printed on the users terminal.
  440.  The format of the listing is determined by the server Kermit.
  441.  
  442.            Kermit-32>REMOTE DIRECTORY file-spec
  443.       or
  444.            Kermit-32>REMOTE DIRECTORY
  445.  
  446.  Where 'file-spec' is  a  valid  file  specification  for  the  server
  447.  Kermit's system.
  448. 2 DISK_USAGE
  449.  
  450.  This causes Kermit-32 to request the server Kermit to reply  with  an
  451.  indication  of  the  amount  of disk space used and available for the
  452.  given directory (or the default directory if none is given).
  453.  
  454.            Kermit-32>REMOTE DISK_USAGE directory-spec
  455.       or
  456.            Kermit-32>REMOTE DISK_USAGE
  457.  
  458.  Where 'directory-spec' is a directory specification  for  the  server
  459.  Kermit's system.  REMOTE SPACE is a synonym for the REMOTE DISK_USAGE
  460.  command.
  461. 2 EXIT
  462.  
  463.  This command is identical to the FINISH  command.   It  requests  the
  464.  server  Kermit  to  exit  to  its system command parser, allowing the
  465.  terminal to be used for normal commands.
  466.  
  467.            Kermit-32>REMOTE EXIT
  468. 2 HELP
  469.  
  470.  This causes Kermit-32 to request the server Kermit to  reply  with  a
  471.  short  summary  of  what  commands it supports in server mode.  If an
  472.  argument is given, help on the  specific  topic  is  requested.   The
  473.  resulting help message will be typed on the users terminal.
  474.  
  475.            Kermit-32>REMOTE HELP
  476.       or
  477.            Kermit-32>REMOTE HELP topic
  478.  
  479.  Where 'topic' is a subject for more detailed help.  If  no  topic  is
  480.  given, a general help message is requested.
  481. 2 HOST
  482.  
  483.  This command requests the server  Kermit  to  perform  the  specified
  484.  command  as  if it were typed by the user on a terminal.  Any results
  485.  of the command will be printed on the  user's  terminal.   Note  that
  486.  this should only be used for commands which will not require any more
  487.  user input, since there will be no way for the user to interact  with
  488.  the remote system to supply more input.
  489.  
  490.            Kermit-32>REMOTE HOST command
  491.  
  492.  Where 'command' is any valid command to be processed  by  the  remote
  493.  systems standard command parser.
  494. 2 LOGIN
  495.  
  496.  This command allows  the  user  to  supply  the  server  Kermit  with
  497.  accounting  information.   The server Kermit may use this to validate
  498.  the users access to the system as well as for billing  purposes.   It
  499.  may  also  use  this  information  to provide the user with access to
  500.  files on its system.
  501.  
  502.            Kermit-32>REMOTE LOGIN user-id
  503.            Account:  remote-accounting-info
  504.            Password:  remote-password
  505.  
  506.  Where  'user-id'  is  a  string  which  represents   a   valid   user
  507.  identification  on the remote system, 'remote-accounting-info' is any
  508.  additional accounting information required by the remote system (such
  509.  as  account  strings),  and 'remote-password' is the password for the
  510.  remote system which corresponds to the given 'user-id'.  The password
  511.  will not be echoed.
  512. 2 LOGOUT
  513.  
  514.  This command is the same as the LOGOUT command.  It will request  the
  515.  server Kermit to exit and logout its job.
  516.  
  517.            Kermit-32>REMOTE LOGOUT
  518. 2 RENAME
  519.  
  520.  This command causes Kermit-32  to  request  that  the  server  Kermit
  521.  change  the name of a file.  The server Kermit should respond with an
  522.  indication that the operation is completed successfully, or else with
  523.  an   error   message.    Some   Kermit's  may  allow  wild-card  file
  524.  specifications to be used, and will respond with a list of files  and
  525.  new names.
  526.  
  527.            Kermit-32>REMOTE RENAME old-remote-file
  528.            New file:  new-remote-file
  529.  
  530.  Where 'old-remote-file' is the name of the file to  be  renamed,  and
  531.  'new-remote-file' is the new name for the file.
  532. 2 SEND_MESSAGE
  533.  
  534.  This command requests the server Kermit to send a  short  (one  line)
  535.  message  to  the  given  destination.   Depending  on the system, the
  536.  destination may be a terminal, a user name, a mailbox  name  or  some
  537.  other  destination address.  The server Kermit should respond with an
  538.  indication of success or failure.
  539.  
  540.            Kermit-32>REMOTE SEND_MESSAGE destination-address
  541.            Message:  message-text
  542.  
  543.  Where 'destination-address' is a valid destination for  the  server's
  544.  system, and 'message-text' is the message to be sent.
  545. 2 STATUS
  546.  
  547.  This requests the status of the server  Kermit.   The  server  Kermit
  548.  will reply with some indication of its status.
  549.  
  550.            Kermit-32>REMOTE STATUS
  551. 2 TYPE
  552.  
  553.  This causes Kermit-32 to request the server Kermit  to  transmit  the
  554.  specified  file  (or files if the server supports wild-cards) so that
  555.  the file(s) can be typed on the users terminal.
  556.  
  557.            Kermit-32>REMOTE TYPE file-spec
  558.  
  559.  Where 'file-spec' is  a  valid  file  specification  for  the  server
  560.  Kermit's system.
  561. 2 WHO
  562.  
  563.  This requests the server Kermit to display a list  of  users  of  its
  564.  system,  along  with other information about the users and/or system.
  565.  A specific user-id may be supplied, which may result in more detailed
  566.  information about the particular user.  It is also possible to supply
  567.  options for use by the server Kermit in determining the format, etc.,
  568.  of the resulting list.
  569.  
  570.            Kermit-32>REMOTE WHO user-id
  571.            Options:  options-list
  572.  
  573.  Where 'user-id' is an optional string representing a  specific  user,
  574.  and  'options-list'  is  an  optional list of formatting or selection
  575.  options.
  576. 1 SEND
  577.  
  578.  The SEND command will allow you  to  send  a  file(s)  to  the  other
  579.  Kermit.   The SEND command will allow file wild-card processing as is
  580.  found in VAX/VMS.  If Kermit-32 is running in remote mode,  the  file
  581.  will  be  sent  on  the  controlling  terminal line after waiting the
  582.  number of seconds specified by the SET DELAY command.  This gives the
  583.  user  time  to  escape  back  to the other Kermit and issue a receive
  584.  command.  If Kermit-32 is running in local mode,  the  file  will  be
  585.  sent  immediately  on  the  terminal  line  specified by the SET LINE
  586.  command.
  587.  
  588.            Kermit-32>SEND file-spec
  589.  
  590.  Where 'file-spec' is any valid VAX/VMS file specification.
  591. 1 SERVER
  592.  
  593.  This command will cause Kermit-32 to enter server  mode.   The  other
  594.  Kermit  can  then  issue  server  commands  to send and receive files
  595.  without having  to  give  SEND  or  RECEIVE  commands  to  Kermit-32.
  596.  Kermit-32  may  be  put  into  SERVER  mode while running as either a
  597.  remote Kermit (transmitting over the controlling terminal  line),  or
  598.  as  a  local  Kermit (transmitting over a terminal specified by a SET
  599.  LINE command).  Note that in order to correctly receive binary  files
  600.  while  in  SERVER  mode,  a SET FILE TYPE BINARY command must be done
  601.  first.  At this time there is  no  way  for  Kermit-32  to  determine
  602.  whether an incoming file is ASCII or binary.
  603.  
  604.            Kermit-32>SERVER
  605. 1 SET
  606.  
  607.  The SET command is used to set various parameters in Kermit-32.
  608. 2 BLOCK_CHECK_TYPE
  609.  
  610.  The SET BLOCK_CHECK_TYPE command is used to  determine  the  type  of
  611.  block  check  sequence  which  will be used during transmission.  The
  612.  block check sequence is used to detect  transmission  errors.   There
  613.  are  three  types  of  block  checks available.  These are the single
  614.  character checksum (default), the two  character  checksum,  and  the
  615.  three character CRC (cyclic redundancy check).  This command does not
  616.  ensure that the desired type of block check will be used, since  both
  617.  Kermit's involved in the transfer must agree on the block check type.
  618.  Kermit-32 will request that the type  of  block  check  set  by  this
  619.  command be used for a transfer.  If the other Kermit has also had the
  620.  same block check type requested, then the desired  block  check  type
  621.  will be used.  Otherwise, the single character checksum will be used.
  622.  (See Kermit protocol manual for more information.)
  623.  
  624.            Kermit-32>SET BLOCK_CHECK_TYPE type
  625.  
  626.  Where 'type' is one of:
  627.  
  628.   o  1_CHARACTER_CHECKSUM or ONE_CHARACTER_CHECKSUM
  629.  
  630.   o  2_CHARACTER_CHECKSUM or TWO_CHARACTER_CHECKSUM
  631.  
  632.   o  3_CHARACTER_CRC_CCITT or THREE_CHARACTER_CRC_CCITT
  633.  
  634. 2 DEBUGGING
  635.  
  636.  The SET DEBUGGING command is used to set the debug  type-out  on  the
  637.  user's  terminal.  The command will accept either of the states ON or
  638.  OFF.  Kermit-32 can only do debugging  type-out  when  running  as  a
  639.  local  Kermit (SET LINE command done).  This is because the debugging
  640.  type-out would interfere with the file transfer if it  were  sent  to
  641.  the controlling terminal line in remote mode.
  642.  
  643.            Kermit-32>SET DEBUGGING state
  644.  
  645.  Where 'state' is either ON or OFF.
  646. 2 DELAY
  647.  
  648.  The DELAY parameter is the number of seconds to wait  before  sending
  649.  data  after  a SEND command is given.  This is used when Kermit-32 is
  650.  running in remote mode to allow the user time to escape back  to  the
  651.  other Kermit and give a RECEIVE command.
  652.  
  653.            Kermit-32>SET DELAY n
  654.  
  655.  Where 'n' is the number of seconds to wait before sending data.
  656. 2 ESCAPE
  657.  
  658.  This  command  will  set  the  escape  character  for   the   CONNECT
  659.  processing.   The  command will take the octal value of the character
  660.  to use as the escape character.  This is the character which is  used
  661.  to  "escape"  back  to Kermit-32 after using the CONNECT command.  It
  662.  defaults to 35 octal (ASCII GS, CTRL-]).
  663.  
  664.  It is usually a good idea to set this character to something which is
  665.  not  used  (or  at  least  not used very much) on the system to which
  666.  Kermit-32 is CONNECTing.
  667.  
  668.            Kermit-32>SET ESCAPE octal-char-value
  669.  
  670.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  671.  character to use as the escape character.
  672. 2 FILE
  673.  
  674.  The SET FILE command allows setting of  parameters  relating  to  the
  675.  file format and file naming conventions used by Kermit-32.
  676. 3 NAMING
  677.  
  678.  This command sets the type of processing Kermit-32 should do on  file
  679.  names  that  are  being sent and received.  Kermit-32 can either send
  680.  the complete file specification (including device, directories,  file
  681.  name,  file  type and version number) or only the file name and type.
  682.  When receiving a file specification, Kermit-32 can either attempt  to
  683.  use  it  as a VAX/VMS file specification as is, or first perform some
  684.  substitutions  and  truncations  in  order  to  force  the   received
  685.  specification to be just a valid file name and type.
  686.  
  687.            Kermit-32>SET FILE NAMING type
  688.  
  689.  Where 'type' is either FULL, NORMAL_FORM or UNTRANSLATED.
  690. 4 FULL
  691.  
  692.  This will cause Kermit-32 to send complete  file  specifications  and
  693.  perform no translations on received file specifications.
  694. 4 NORMAL_FORM
  695.  
  696.  This will cause Kermit-32 to send only the file name and  file  type,
  697.  and  perform  translations  on  received file specifications to force
  698.  them to be only a valid file name and type.
  699. 4 UNTRANSLATED
  700.  
  701.  This will cause Kermit-32 to send only the file name and  file  type,
  702.  and perform no translations on received file specifications.
  703. 3 TYPE
  704.  
  705.  This command will set the file type that Kermit-32 is  receiving.   A
  706.  file  type of ASCII should be used to receive text files which are to
  707.  be used as text files on the VAX/VMS system.  The  file  type  BINARY
  708.  should  be used for binary files, such as CP/M .COM files, which need
  709.  to be kept in a format that allows the file to  be  returned  without
  710.  any changes.
  711.  
  712.            Kermit-32>SET FILE TYPE type
  713.  
  714.  Where 'type' is either ASCII, BINARY or FIXED.
  715. 4 ASCII
  716.  
  717.  File type ASCII is for text files.
  718. 4 BINARY
  719.  
  720.  File type BINARY is for non-text files.  Note that binary files which
  721.  are  generated  on  a VAX/VMS system cannot be transferred to another
  722.  VAX/VMS system without losing file attributes.  This means that  (for
  723.  example),  an  .EXE file cannot be transmitted with Kermit-32.  (This
  724.  problem should be resolved in a future version of Kermit-32).
  725. 4 FIXED
  726.  
  727.  The FIXED file type will cause Kermit-32 to create a  file  with  512
  728.  byte fixed length records, containing only the data received from the
  729.  other Kermit.  This format can be used for transferring VAX/VMS  .EXE
  730.  files  or  RSX-11/M (P/OS) .TSK files, or any other binary file which
  731.  is stored in 512 byte fixed length records.
  732. 2 HANDSHAKE
  733.  
  734.  Sets the half duplex line turnaround  handshake  character  Kermit-32
  735.  will  use.   Normally  required  for  communication  with half duplex
  736.  systems like IBM mainframes.
  737.  
  738.            Kermit-32>SET HANDSHAKE octal-char-value
  739.       or
  740.            Kermit-32>SET HANDSHAKE NONE
  741.  
  742.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  743.  character to use for the handshake character.  The SET HANDSHAKE NONE
  744.  command turns handshaking off.
  745. 2 IBM_MODE
  746.  
  747.  The SET IBM_MODE command allows Kermit-32 to be put into a mode which
  748.  will  allow  transfers to an IBM host.  This causes Kermit-32 to wait
  749.  for the IBM turnaround character (XON,  CTRL-Q)  before  sending  any
  750.  characters to the other Kermit.  It also forces the parity type to be
  751.  mark, and turns on local echo for the CONNECT command.
  752.  
  753.            Kermit-32>SET IBM_MODE state
  754.  
  755.  Where 'state' is either ON or OFF.
  756. 2 INCOMPLETE_FILE_DISPOSITION
  757.  
  758.  The  SET  INCOMPLETE_FILE_DISPOSITION  command  allows  the  user  to
  759.  determine  what  is done with a file that is not completely received.
  760.  If the disposition is KEEP, all files received will be kept, even  if
  761.  only  a  portion  of  the  file  is  received.  If the disposition is
  762.  DISCARD (the default), files which are not  completely  received  are
  763.  discarded.
  764.  
  765.            Kermit-32>SET INCOMPLETE_FILE_DISPOSITION action
  766.  
  767.  Where 'action' is either DISCARD or KEEP.
  768. 2 LINE
  769.  
  770.  This will set the terminal line that you  are  using.   The  terminal
  771.  line  must  be  one  which  is accessible to the users process.  This
  772.  means that the applicable protection code for the terminal must  have
  773.  been  set  to  allow  your  process  to access it (done by the system
  774.  manager).
  775.  
  776.            Kermit-32>SET LINE terminal-name
  777.  
  778.  The 'terminal-name' device must be a terminal line (e.g.  TTA0:).
  779. 2 LOCAL_ECHO
  780.  
  781.  The SET LOCAL_ECHO command specifies  whether  characters  should  be
  782.  echoed  locally  when CONNECTing to another system.  If LOCAL_ECHO is
  783.  set to ON, any  character  typed  on  the  terminal  will  be  echoed
  784.  immediately  to  the  terminal,  as  well  as being sent to the other
  785.  system.  If LOCAL_ECHO is set to OFF (the  default),  the  characters
  786.  typed  on the terminal are only sent to the other system (which would
  787.  normally be echoing the characters).
  788.  
  789.            Kermit-32>SET LOCAL_ECHO state
  790.  
  791.  Where 'state' is either ON or OFF.
  792. 2 MESSAGE
  793.  
  794.  This command sets the type  of  type-out  Kermit-32  will  do  during
  795.  transfers   in   local   mode.   Kermit-32  can  type  out  the  file
  796.  specification being transferred, the packet numbers  being  sent  and
  797.  received,   both   or   neither.    The   default  is  to  type  file
  798.  specifications but not packet numbers.
  799.  
  800.            Kermit-32>SET MESSAGE type state
  801.  
  802.  Where 'type' is either FILE or PACKET, and 'state' is  either  ON  or
  803.  OFF.
  804. 2 PARITY
  805.  
  806.  This command determines the type of parity to use on the transmission
  807.  line.  Kermit-32 normally uses characters which consist of eight data
  808.  bits with no parity bit.  For systems  or  transmission  media  which
  809.  require  a  specific  parity  type,  Kermit-32 can send characters as
  810.  seven data bits plus a parity bit.
  811.  
  812.            Kermit-32>SET PARITY state
  813.  
  814.  Where 'state' is one of:
  815.  
  816.   o  NONE (default) - eight data bits and no parity bit.
  817.  
  818.   o  MARK - seven data bits with the parity bit set to one.
  819.  
  820.   o  SPACE - seven data bits with the parity bit set to zero.
  821.  
  822.   o  EVEN - seven data bits with  the  parity  bit  set  to  make  the
  823.      overall parity even.
  824.  
  825.   o  ODD - seven data bits with the parity bit set to make the overall
  826.      parity odd.
  827.  
  828. 2 PROMPT
  829.  
  830.  This command sets the string to be used for the command  prompt.   If
  831.  no argument is given, the default prompt (Kermit-32>) is used.
  832.  
  833.            Kermit-32>SET PROMPT new-prompt-text
  834.       or
  835.            Kermit-32>SET PROMPT
  836.  
  837.  Where 'new-prompt-text' is the new prompt to use.
  838. 2 RECEIVE
  839.  
  840.  It  is  possible  to  set  various  parameters  associated  with  the
  841.  receiving  of  the  data  from  the  remote Kermit.  SET RECEIVE will
  842.  enable you to set the various receive parameters.
  843. 3 END_OF_LINE
  844.  
  845.  This will set the end of line  character  the  Kermit-32  expects  to
  846.  receive  from  the  remote  Kermit.   This  is  the  character  which
  847.  terminates a packet.  The parameter must be an octal  number  in  the
  848.  range 1 to 37.  The default value is 15 octal (ASCII CR, CTRL-M).
  849.  
  850.            Kermit-32>SET RECEIVE END_OF_LINE octal-char-value
  851.  
  852.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  853.  character to use for the end of line character.
  854. 3 EIGHT_BIT_QUOTE
  855.  
  856.  This command sets the character to be used (when necessary) to  quote
  857.  characters  which have the eighth bit (parity bit) set.  This is used
  858.  to transfer eight-bit bytes  on  a  transmission  medium  which  only
  859.  supports  seven  data bits.  The parameter must be an octal number in
  860.  the range 41 to 76 or 140 to 176.  The  default  value  is  46  octal
  861.  (ASCII  "&").   Eighth-bit quoting will only be used if both Kermit's
  862.  can handle it, and the transmission medium does not transmit  8  data
  863.  bits (as indicated by the SET PARITY command).
  864.  
  865.            Kermit-32>SET RECEIVE EIGHT_BIT_QUOTE octal-char-value
  866.  
  867.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  868.  character  to  use  for  quoting characters which have the eighth bit
  869.  set.
  870. 3 PACKET_LENGTH
  871.  
  872.  This will  set  the  receive  packet  length.   The  value  for  this
  873.  parameter  must be between 10 and 94.  Packet lengths outside of this
  874.  range are illegal.  The default value is 80.
  875.  
  876.            Kermit-32>SET RECEIVE PACKET_LENGTH n
  877.  
  878.  Where 'n' is the receive packet length to use.
  879. 3 PADCHAR
  880.  
  881.  This parameter is the padding character that is sent  to  the  remote
  882.  Kermit.   The  parameter must be an octal number in the range of 0 to
  883.  37 or 177.  The default value is 0 (ASCII NUL, CTRL-@).
  884.  
  885.            Kermit-32>SET RECEIVE PADCHAR octal-char-value
  886.  
  887.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  888.  character to be used as a pad character.
  889. 3 PADDING
  890.  
  891.  This command will set the number of padding characters that  will  be
  892.  sent to the other Kermit.  The default value is 0.
  893.  
  894.            Kermit-32>SET RECEIVE PADDING n
  895.  
  896.  Where 'n' is the number of padding characters to use.
  897. 3 QUOTE
  898.  
  899.  This will set the quoting character that  Kermit-32  will  expect  on
  900.  incoming  messages.   This  is  the  character  used to quote control
  901.  characters.  The parameter must be an octal number in the range 40 to
  902.  176.  The default value is 43 octal (ASCII "#").
  903.  
  904.            Kermit-32>SET RECEIVE QUOTE octal-char-value
  905.  
  906.  Where 'octal-char-value' is the ASCII value (in octal) of the quoting
  907.  character.
  908. 3 START_OF_PACKET
  909.  
  910.  This command will set the start of packet  character  for  Kermit-32.
  911.  The  start of packet character must be in the range of 1 to 37 octal.
  912.  The default value is 1 (ASCII SOH, CTRL-A).  This value  should  only
  913.  be  changed if absolutely necessary.  It must be set the same in both
  914.  Kermit's.
  915.  
  916.            Kermit-32>SET RECEIVE START_OF_PACKET octal-char-value
  917.  
  918.  Where 'octal-char-value' is the ASCII value (in octal) of the receive
  919.  start-of-packet character to use.
  920. 3 TIMEOUT
  921.  
  922.  This will set the number of seconds before Kermit-32  will  time  out
  923.  the  attempt  to  receive a message.  This time out is used to handle
  924.  transmission errors which totally lose a message.  The default  value
  925.  is 15 seconds.
  926.  
  927.            Kermit-32>SET RECEIVE TIMEOUT n
  928.  
  929.  Where 'n' is the number of seconds to wait for a message.
  930. 2 REPEAT_QUOTE
  931.  
  932.  This command sets the character to be used as the  lead-in  character
  933.  for  a  repeat sequence (a string of characters which represents some
  934.  number of characters which are repeated in the data).  Both  Kermit's
  935.  must  support  repeat  compression  for  this  to  be in effect.  The
  936.  parameter must be an octal number in the range 41 to  76  or  140  to
  937.  176.  The default value is 176 octal (ASCII "~").  The character will
  938.  only be used on files which are being transmitted by Kermit-32.   The
  939.  REPEAT_QUOTE  character  used for incoming files is decided on by the
  940.  other Kermit.  A value of 40 octal  (a  space)  will  disable  repeat
  941.  compression.
  942.  
  943.            Kermit-32>SET REPEAT_QUOTE octal-char-value
  944.  
  945.  Where 'octal-char-value' is the ASCII value (in octal) for the repeat
  946.  quoting character.
  947. 2 RETRY
  948.  
  949.  This command sets the maximum number of times Kermit-32 should try to
  950.  send  specific  packets.   There  are two retry maximums, one for the
  951.  initial connection packet (the "SEND-INIT"), the other for all  other
  952.  packets.   The  default  value  for  initial  connections  is 5.  The
  953.  default value for all other packets is 16.
  954.  
  955.            Kermit-32>SET RETRY type n
  956.  
  957.  Where 'type' is either  INITIAL_CONNECTION  (for  initial  connection
  958.  packet)  or  PACKET (for all other packets), and 'n' is the number of
  959.  retries (in decimal) to attempt.
  960. 2 SEND
  961.  
  962.  It  is  possible  to  set  various  parameters  associated  with  the
  963.  receiving  of  the data from the remote Kermit.  SET SEND will enable
  964.  you to set the various SEND parameters.  These parameters should  not
  965.  normally be set, since as part of the transfer initialization process
  966.  the two Kermit's exchange their RECEIVE parameters.   The  capability
  967.  of  setting  these  parameters  is  provided  so  that  the  transfer
  968.  initialization can be completed even if the  default  parameters  are
  969.  not correct.
  970. 3 END_OF_LINE
  971.  
  972.  This will set the end of line character the Kermit-32  will  send  to
  973.  the  remote Kermit.  This is the character which terminates a packet.
  974.  The parameter must be an octal number in the  range  1  to  37.   The
  975.  default value is 15 octal (ASCII CR, CTRL-M).
  976.  
  977.            Kermit-32>SET SEND END_OF_LINE octal-char-value
  978.  
  979.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  980.  character to use for the end of line character.
  981. 3 PACKET_LENGTH
  982.  
  983.  This will set the SEND packet length.  The value for  this  parameter
  984.  must  be between 10 and 94.  Packet lengths outside of this range are
  985.  illegal.  The default value is 80.
  986.  
  987.            Kermit-32>SET SEND PACKET_LENGTH n
  988.  
  989.  Where 'n' is the send packet length to use.
  990. 3 PADCHAR
  991.  
  992.  This parameter is the padding character that is sent  to  the  remote
  993.  Kermit.   The  parameter must be an octal number in the range of 0 to
  994.  37 or 177.  The default value is 0 (ASCII NUL, CTRL-@).
  995.  
  996.            Kermit-32>SET SEND PADCHAR octal-char-value
  997.  
  998.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  999.  character to be used as a pad character.
  1000. 3 PADDING
  1001.  
  1002.  This command will set the number of padding characters that  will  be
  1003.  sent to the other Kermit.  The default value is 0.
  1004.  
  1005.            Kermit-32>SET SEND PADDING n
  1006.  
  1007.  Where 'n' is the number of padding characters to use.
  1008. 3 QUOTE
  1009.  
  1010.  This will set the quoting character that  Kermit-32  will  expect  on
  1011.  incoming  messages.   This  is  the  character  used to quote control
  1012.  characters.  The parameter must be an octal number in the range 40 to
  1013.  176.  The default value is 43 octal (ASCII "#").
  1014.  
  1015.            Kermit-32>SET SEND QUOTE octal-char-value
  1016.  
  1017.  Where 'octal-char-value' is the ASCII value (in octal) of the quoting
  1018.  character.
  1019. 3 START_OF_PACKET
  1020.  
  1021.  This command will set the start of packet  character  for  Kermit-32.
  1022.  The  start of packet character must be in the range of 1 to 37 octal.
  1023.  The default value is 1 (ASCII SOH, CTRL-A).  This value  should  only
  1024.  be  changed if absolutely necessary.  It must be set the same in both
  1025.  Kermit's.
  1026.  
  1027.            Kermit-32>SET SEND START_OF_PACKET octal-char-value
  1028.  
  1029.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  1030.  start-of-packet character to use.
  1031. 3 TIMEOUT
  1032.  
  1033.  This will set the number of seconds before Kermit-32 will time out  a
  1034.  message  it  has  sent to the other Kermit.  This time out is used to
  1035.  handle transmission errors which totally lose a message.  The default
  1036.  value is 15 seconds.
  1037.  
  1038.            Kermit-32>SET SEND TIMEOUT n
  1039.  
  1040.  Where 'n' is the number of seconds to wait for a message.
  1041. 2 SERVER_TIMER
  1042.  
  1043.  This specifies the number of seconds between timeouts  during  server
  1044.  command  wait.   A value of 0 specifies that no timeouts should occur
  1045.  during server command wait.  When a Kermit server times out, it sends
  1046.  a  NAK  packet.   Some  systems cannot clear piled-up NAKs from their
  1047.  input buffers; if you're using such a system to  communicate  with  a
  1048.  Kermit-32  server,  and  you expect to be leaving the server idle for
  1049.  long periods of time, you should use this command to turn off  server
  1050.  command-wait timeouts.
  1051.  
  1052.            Kermit-32>SET SERVER_TIMEOUT n
  1053.  
  1054.  Where 'n' is the number of seconds between server timeouts.
  1055. 1 SHOW
  1056.  
  1057.  The SHOW command will allow you to show the various  parameters  that
  1058.  are set with the SET command.
  1059. 2 ALL
  1060.  
  1061.  The SHOW ALL command will cause all of the parameters to be listed.
  1062. 2 BLOCK_CHECK_TYPE
  1063.  
  1064.  This command will  type  out  what  type  of  block  check  is  being
  1065.  requested.
  1066. 2 COMMUNICATIONS
  1067.  
  1068.  This  command  will  type  out  the   communications   line   related
  1069.  parameters.   This  includes the terminal line being used, the parity
  1070.  type, etc.
  1071. 2 DEBUGGING
  1072.  
  1073.  The SHOW DEBUGGING command will print  the  state  of  the  debugging
  1074.  flag.
  1075. 2 DELAY
  1076.  
  1077.  This will display the number of seconds delay that Kermit-32 will use
  1078.  before attempting to send or receive a file.
  1079. 2 ESCAPE
  1080.  
  1081.  This will display  the  current  escape  character  for  the  CONNECT
  1082.  processing.
  1083. 2 FILE_PARAMETERS
  1084.  
  1085.  This will display the parameters related to files being  used.   This
  1086.  includes the file type and the incomplete file disposition.
  1087. 2 INCOMPLETE_FILE_DISPOSITION
  1088.  
  1089.  This will display the disposition of incompletely received files.
  1090. 2 LINE
  1091.  
  1092.  This command displays the terminal line that will be used for CONNECT
  1093.  and file transfers commands.
  1094. 2 LOCAL_ECHO
  1095.  
  1096.  This will display the status of the local echo flag.
  1097. 2 PACKET
  1098.  
  1099.  This will display the current settings of the send and receive packet
  1100.  parameters.
  1101. 2 PARITY
  1102.  
  1103.  This will display the current parity setting.
  1104. 2 RECEIVE
  1105.  
  1106.  The current values of the RECEIVE parameters will be displayed on the
  1107.  user's  terminal.   Only  the  parameters  that  can  be  set will be
  1108.  displayed.
  1109. 2 RETRY
  1110.  
  1111.  This command will show the maximum number of retries  that  Kermit-32
  1112.  will attempt to send a message to the remote Kermit.
  1113. 2 SEND
  1114.  
  1115.  All of the send parameters will be displayed on the user's terminal.
  1116. 2 TIMING
  1117.  
  1118.  All of  the  timing  parameters  will  be  displayed  on  the  user's
  1119.  terminal.
  1120. 2 VERSION
  1121.  
  1122.  Displays the version number of Kermit-32 in use.
  1123. 1 STATUS
  1124.  
  1125.  The current status of Kermit-32 will be displayed.  This includes the
  1126.  number of characters that have been sent and received from the remote
  1127.  Kermit.  Also included is an estimate of the effective baud  rate  of
  1128.  the  transfer.   This number is not intended to be exact, but only an
  1129.  indication of what range of throughput has been provided.
  1130. 1 TAKE
  1131.  
  1132.  The TAKE  command  tells  Kermit-32  to  execute  commands  from  the
  1133.  specified file.  You may also use the VAX/VMS notation "@" instead of
  1134.  Take to specify a command file.
  1135.  
  1136.            Kermit-32>TAKE file-spec
  1137.       or
  1138.            Kermit-32>TAKE file-spec /DISPLAY
  1139.  
  1140.  Where 'file-spec' is  any  normal  VAX/VMS  file  specification.   If
  1141.  file-spec  does  not  specify  a  file-type  Kermit-32  will supply a
  1142.  default of .COM.  The /DISPLAY option causes the commands  read  from
  1143.  the file to be displayed on the user's terminal.
  1144.