home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / b / vmsmit.doc < prev    next >
Text File  |  2020-01-01  |  54KB  |  2,613 lines

  1. 1 ASCII_Set
  2.  
  3.  Oct Char     Oct Char     Oct Char     Oct Char
  4.  
  5.  --- ----     --- ----     --- ----     --- ----
  6.  
  7.    0 NUL       40 SP       100  @       140  `  
  8.  
  9.    1 SOH       41  !       101  A       141  a  
  10.  
  11.    2 STX       42  "       102  B       142  b  
  12.  
  13.    3 ETX       43  #       103  C       143  c  
  14.  
  15.    4 EOT       44  $       104  D       144  d  
  16.  
  17.    5 ENQ       45  %       105  E       145  e  
  18.  
  19.    6 ACK       46  &       106  F       146  f  
  20.  
  21.    7 BEL       47  '       107  G       147  g  
  22.  
  23.   10 BS        50  (       110  H       150  h  
  24.  
  25.   11 HT        51  )       111  I       151  i  
  26.  
  27.   12 LF        52  *       112  J       152  j  
  28.  
  29.   13 VT        53  +       113  K       153  k  
  30.  
  31.   14 FF        54  ,       114  L       154  l  
  32.  
  33.   15 CR        55  -       115  M       155  m  
  34.  
  35.   16 SO        56  .       116  N       156  n  
  36.  
  37.   17 SI        57  /       117  O       157  o  
  38.  
  39.   20 DLE       60  0       120  P       160  p  
  40.  
  41.   21 DC1       61  1       121  Q       161  q  
  42.  
  43.   22 DC2       62  2       122  R       162  r  
  44.  
  45.   23 DC3       63  3       123  S       163  s  
  46.  
  47.   24 DC4       64  4       124  T       164  t  
  48.  
  49.   25 NAK       65  5       125  U       165  u  
  50.  
  51.   26 SYN       66  6       126  V       166  v  
  52.  
  53.   27 ETB       67  7       127  W       167  w  
  54.  
  55.   30 CAN       70  8       130  X       170  x  
  56.  
  57.   31 EM        71  9       131  Y       171  y  
  58.  
  59.   32 SUB       72  :       132  Z       172  z  
  60.  
  61.   33 ESC       73  ;       133  [       173  {  
  62.  
  63.   34 FS        74  <       134  \       174  |  
  64.  
  65.   35 GS        75  =       135  ]       175  }  
  66.  
  67.   36 RS        76  >       136  ^       176  ~  
  68.  
  69.   37 US        77  ?       137  _       177 DEL 
  70.  
  71. 1 BYE
  72.  
  73.  
  74.  
  75.  This command will cause Kermit-32 (when in local mode)  to  tell  the
  76.  
  77.  other  Kermit  (which  should  be in server mode) to exit from Kermit
  78.  
  79.  and, if applicable, terminate  its  job  (or  process,  etc.).   When
  80.  
  81.  Kermit-32  receives  the  acknowledgement that this is being done, it
  82.  
  83.  will exit to VAX/VMS.
  84.  
  85.  
  86.  
  87.            Kermit-32>BYE
  88.  
  89. 1 CONNECT
  90.  
  91.  
  92.  
  93.  The CONNECT command will  allow  you  to  connect  in  as  a  virtual
  94.  
  95.  terminal over the line that was specified by the SET LINE command, or
  96.  
  97.  to the terminal line specified in the  command.   The  terminal  line
  98.  
  99.  must  be  one  which  is accessible to the users process.  This means
  100.  
  101.  that the applicable protection code for the terminal must  have  been
  102.  
  103.  set  to allow your process to access it (done by the system manager).
  104.  
  105.  If a session log file was previously specified, a new version of  the
  106.  
  107.  file  will be created, and all type-out logged in the file.  The file
  108.  
  109.  will  be  closed  when  the  command  is  completed  (by  use  of  an
  110.  
  111.  escape-character "C" command).  The format of the CONNECT command is:
  112.  
  113.  
  114.  
  115.            Kermit-32>CONNECT
  116.  
  117.       or
  118.  
  119.            Kermit-32>CONNECT terminal-name
  120.  
  121.  
  122.  
  123.  where 'terminal-name' is the terminal line name to be used.
  124.  
  125. 2 Escape_Character
  126.  
  127.  
  128.  
  129.  This character is  used  to  issue  a  limited  set  of  commands  to
  130.  
  131.  Kermit-32  after  using  the  CONNECT  command.  Its default value is
  132.  
  133.  CTRL-] (35 octal, ASCII GS) and can be changed  via  the  SET  ESCAPE
  134.  
  135.  command.   It  is  usually  a  good  idea  to  set  this character to
  136.  
  137.  something which is not used (or at least not used very much)  on  the
  138.  
  139.  system  to which Kermit-32 is CONNECTing.  The command that is issued
  140.  
  141.  is determined by  the  character  that  is  typed  after  the  escape
  142.  
  143.  character.   The  following  characters  are  recognized by Kermit-32
  144.  
  145.  after the escape character:
  146.  
  147.  
  148.  
  149.            C - Return to VAX/VMS Kermit-32
  150.  
  151.            Q - Suspend logging to session log file (if any)
  152.  
  153.            R - Resume logging to session log file (if any)
  154.  
  155.            S - Show status
  156.  
  157.            0 - Send a null
  158.  
  159.            ?  - Type this text
  160.  
  161.       CTRL-] - Send escape character
  162.  
  163.  
  164.  
  165.  Any other character will cause Kermit-32 to  ring  the  bell  at  the
  166.  
  167.  local   terminal.   The  escape-character  S  (show  status)  command
  168.  
  169.  displays the terminal line being used, the escape character  and  the
  170.  
  171.  settings of local echo, parity and session logging.
  172.  
  173. 1 Control_Chars
  174.  
  175.  
  176.  
  177.  During a file transfer (GET, RECEIVE or SEND commands) with Kermit-32
  178.  
  179.  in  local mode the following control characters can be used to affect
  180.  
  181.  the transfer in progress:
  182.  
  183.  
  184.  
  185.            CTRL-A - Print a brief status report
  186.  
  187.            CTRL-C - Abort the protocol
  188.  
  189.            CTRL-D - Turn logging to the debugging log file on/off
  190.  
  191.            CTRL-M - (or RETURN) Force a protocol timeout
  192.  
  193.            CTRL-X - Abort the file currently being transferred
  194.  
  195.            CTRL-Z - Abort the file group currently being transferred
  196.  
  197.  
  198.  
  199.  The CTRL-A status report displays the protocol state and  the  number
  200.  
  201.  of NAKs sent and received.
  202.  
  203. 1 EXIT
  204.  
  205.  
  206.  
  207.  The EXIT command will cause Kermit-32 to  return  to  command  level.
  208.  
  209.  This  command  is  the  same as the QUIT command.  An example of this
  210.  
  211.  command is:
  212.  
  213.  
  214.  
  215.            Kermit-32>EXIT
  216.  
  217. 1 FINISH
  218.  
  219.  
  220.  
  221.  This command will cause Kermit-32 (when in local mode)  to  tell  the
  222.  
  223.  other  Kermit  (which  should be in server mode) to exit from Kermit.
  224.  
  225.  After  receiving  the  acknowledgement  that  this  is  being   done,
  226.  
  227.  Kermit-32 will prompt for another command.
  228.  
  229.  
  230.  
  231.            Kermit-32>FINISH
  232.  
  233. 1 GET
  234.  
  235.  
  236.  
  237.  The GET command is used to have a local mode Kermit-32 request a file
  238.  
  239.  from  a  remote  Kermit server.  Kermit-32 must be running as a local
  240.  
  241.  Kermit (i.e., a SET LINE command must  have  been  done).   Kermit-32
  242.  
  243.  will  then  request the other Kermit (which must be running in server
  244.  
  245.  mode) to transfer the specified file (or set of files) to  Kermit-32.
  246.  
  247.  The  file  specification must be in the format of the system on which
  248.  
  249.  the server Kermit is running.  The format of the command is:
  250.  
  251.  
  252.  
  253.            Kermit-32>GET file-spec
  254.  
  255.  
  256.  
  257.  Where 'file-spec' is any valid file specification on  the  system  on
  258.  
  259.  which the server Kermit is running.
  260.  
  261. 1 HELP
  262.  
  263.  
  264.  
  265.  Typing HELP alone  prints  a  brief  summary  of  Kermit-32  and  its
  266.  
  267.  commands.  You can also type
  268.  
  269.  
  270.  
  271.            Kermit-32>HELP topic [subtopic]...
  272.  
  273.  
  274.  
  275.  for any Kermit-32 command, e.g.  "help send" or "help set parity"  to
  276.  
  277.  get more detailed information about a specific command.
  278.  
  279. 1 LOCAL
  280.  
  281.  
  282.  
  283.  This command allows the user of Kermit-32 to perform various  actions
  284.  
  285.  on  the  user's  system.   These  commands  provide  for  listing the
  286.  
  287.  contents of a directory, deleting files, typing files, displaying the
  288.  
  289.  amount of disk space used, etc.  Many of these commands are performed
  290.  
  291.  by spawning a subprocess to execute the  corresponding  DCL  command;
  292.  
  293.  therefore,  the  standard  parameters and qualifiers which DCL allows
  294.  
  295.  may be used.
  296.  
  297.  
  298.  
  299.            Kermit-32>LOCAL keyword arguments
  300.  
  301.  
  302.  
  303.  Where 'keyword' is the name of the command, and 'arguments'  are  the
  304.  
  305.  optional arguments for the command.
  306.  
  307. 2 COPY
  308.  
  309.  
  310.  
  311.  This causes Kermit-32 to make a copy of  the  specified  file.   This
  312.  
  313.  command  uses  the  standard DCL COPY command.  Any options valid for
  314.  
  315.  DCL's COPY command may be used.
  316.  
  317.  
  318.  
  319.            Kermit-32>LOCAL COPY old-local-file
  320.  
  321.            New file:  new-local-file
  322.  
  323.  
  324.  
  325.  Where 'old-local-file' is the name of the file you wish to copy,  and
  326.  
  327.  'new-local-file' is the name for the copy.
  328.  
  329. 2 CWD
  330.  
  331.  
  332.  
  333.  This command (short for "Change Working Directory") causes  Kermit-32
  334.  
  335.  to  change  the  default  directory that will be used for files whose
  336.  
  337.  specification does not include the directory  information.   This  is
  338.  
  339.  similar to the DCL SET DEFAULT command.  If no device or directory is
  340.  
  341.  given, the default device and directory is set back to that which was
  342.  
  343.  being used when Kermit-32 was started.
  344.  
  345.  
  346.  
  347.            Kermit-32>LOCAL CWD local-directory-spec
  348.  
  349.       or
  350.  
  351.            Kermit-32>LOCAL CWD
  352.  
  353.  
  354.  
  355.  Where 'local-directory-spec' is the device and/or  directory  portion
  356.  
  357.  of  a  standard  VAX/VMS  file specification.  It may include logical
  358.  
  359.  names, but not wild-cards.
  360.  
  361. 2 DELETE
  362.  
  363.  
  364.  
  365.  This causes Kermit-32 to delete the specified file(s).  This uses the
  366.  
  367.  standard DCL DELETE command.
  368.  
  369.  
  370.  
  371.            Kermit-32>LOCAL DELETE file-spec
  372.  
  373.  
  374.  
  375.  Where 'file-spec' is a valid VAX/VMS file specification.
  376.  
  377. 2 DIRECTORY
  378.  
  379.  
  380.  
  381.  This causes Kermit-32 to display a directory listing.  This uses  the
  382.  
  383.  standard DCL DIRECTORY command.
  384.  
  385.  
  386.  
  387.            Kermit-32>LOCAL DIRECTORY file-spec
  388.  
  389.       or
  390.  
  391.            Kermit-32>LOCAL DIRECTORY
  392.  
  393.  
  394.  
  395.  Where 'file-spec' is a valid VAX/VMS file specification.
  396.  
  397. 2 DISK_USAGE
  398.  
  399.  
  400.  
  401.  This causes Kermit-32 to display the amount of disk  space  used  and
  402.  
  403.  available  for  the  given  UIC (or the user's UIC if none is given).
  404.  
  405.  This uses the standard DCL SHOW QUOTA command.
  406.  
  407.  
  408.  
  409.            Kermit-32>LOCAL DISK_USAGE uic
  410.  
  411.       or
  412.  
  413.            Kermit-32>LOCAL DISK_USAGE
  414.  
  415.  
  416.  
  417.  Where 'uic' is a UIC specification (in square brackets).  LOCAL SPACE
  418.  
  419.  is a synonym for the LOCAL DISK_USAGE command.
  420.  
  421. 2 HELP
  422.  
  423.  
  424.  
  425.  This causes Kermit-32 to display the help message which it  sends  as
  426.  
  427.  the  reply  when  it receives a "REMOTE HELP" command in server mode.
  428.  
  429.  This describes the REMOTE commands which Kermit-32 implements.
  430.  
  431.  
  432.  
  433.            Kermit-32>LOCAL HELP
  434.  
  435. 2 HOST
  436.  
  437.  
  438.  
  439.  This command requests Kermit-32 to perform the specified  command  as
  440.  
  441.  if  it  were  typed  by  the  user on a terminal.  Any results of the
  442.  
  443.  command will be printed on  the  user's  terminal.   Note  that  this
  444.  
  445.  should only be used for commands which will not require any more user
  446.  
  447.  input, since there will be no way for the user to interact  with  the
  448.  
  449.  subprocess to supply more input.  This works by spawning a subprocess
  450.  
  451.  (much like the DCL SPAWN command) to perform the command.
  452.  
  453.  
  454.  
  455.            Kermit-32>LOCAL HOST command
  456.  
  457.  
  458.  
  459.  Where 'command' is any valid DCL command.
  460.  
  461. 2 RENAME
  462.  
  463.  
  464.  
  465.  This command causes Kermit-32 to change the name  of  a  file.   This
  466.  
  467.  uses the standard DCL RENAME command.
  468.  
  469.  
  470.  
  471.            Kermit-32>LOCAL RENAME old-local-file
  472.  
  473.            New file:  new-local-file
  474.  
  475.  
  476.  
  477.  Where 'old-local-file' is the name of the file  to  be  renamed,  and
  478.  
  479.  'new-local-file' is the new name for the file.
  480.  
  481. 2 SEND_MESSAGE
  482.  
  483.  
  484.  
  485.  This command causes Kermit-32 to send a short (one line)  message  to
  486.  
  487.  the  given  terminal.   Because this uses the DCL REPLY command, OPER
  488.  
  489.  privilege is needed.
  490.  
  491.  
  492.  
  493.            Kermit-32>LOCAL SEND_MESSAGE terminal-name
  494.  
  495.            Message:  message-text
  496.  
  497.  
  498.  
  499.  Where  'terminal-name'  is  a  valid  name  for   a   terminal,   and
  500.  
  501.  'message-text' is the message to be sent.
  502.  
  503. 2 TYPE
  504.  
  505.  
  506.  
  507.  This causes  Kermit-32  to  display  the  specified  file(s)  on  the
  508.  
  509.  terminal.
  510.  
  511.  
  512.  
  513.            Kermit-32>LOCAL TYPE file-spec
  514.  
  515.  
  516.  
  517.  Where 'file-spec' is a valid VAX/VMS file specification.
  518.  
  519. 2 WHO
  520.  
  521.  
  522.  
  523.  This displays the output of a DCL SHOW SYSTEM command.
  524.  
  525.  
  526.  
  527.            Kermit-32>LOCAL WHO
  528.  
  529. 1 LOG
  530.  
  531.  
  532.  
  533.  The LOG command allows the user to specify the file names to be  used
  534.  
  535.  for  the  various  log files Kermit-32 is capable of creating.  A LOG
  536.  
  537.  command without a file specification will cause no log file  of  that
  538.  
  539.  type to be created.
  540.  
  541.  
  542.  
  543.            Kermit-32>LOG log-type file-spec
  544.  
  545.       or
  546.  
  547.            Kermit-32>LOG log-type
  548.  
  549.  
  550.  
  551.  Where 'log-type' is DEBUG, SESSION, or TRANSACTION,  and  'file-spec'
  552.  
  553.  is  the  file  specification  to  use  for that type of log file.  If
  554.  
  555.  file-spec does not  specify  a  file-type  Kermit-32  will  supply  a
  556.  
  557.  default of .LOG.  If 'file-spec' is not present, that type of logging
  558.  
  559.  is disabled.
  560.  
  561. 2 DEBUG
  562.  
  563.  
  564.  
  565.  The LOG DEBUG command sets the file specification to be used for  the
  566.  
  567.  debugging  log file.  This file will be used for the debugging output
  568.  
  569.  produced when a SET DEBUG ON command is done.  A new version  of  the
  570.  
  571.  file is created each time a transfer command is performed, and closed
  572.  
  573.  upon the completion of the transfer command.
  574.  
  575.  
  576.  
  577.            Kermit-32>LOG DEBUG file-spec
  578.  
  579.       or
  580.  
  581.            Kermit-32>LOG DEBUG
  582.  
  583.  
  584.  
  585.  Where 'file-spec' is the file specification to use for the  debugging
  586.  
  587.  log  file.   If file-spec does not specify a file-type Kermit-32 will
  588.  
  589.  supply a default  of  .LOG.   If  'file-spec'  is  not  present,  the
  590.  
  591.  debugging log file is disabled.
  592.  
  593. 2 SESSION
  594.  
  595.  
  596.  
  597.  The LOG SESSION command sets the file name to be used for a log  file
  598.  
  599.  of  a  "CONNECT" session.  A new version of this file is created each
  600.  
  601.  time the CONNECT command is used, and closed when the CONNECT command
  602.  
  603.  finishes  (as  a  result of the escape command to close the session).
  604.  
  605.  All output to the controlling terminal will be logged in the  session
  606.  
  607.  log file.
  608.  
  609.  
  610.  
  611.            Kermit-32>LOG SESSION file-spec
  612.  
  613.       or
  614.  
  615.            Kermit-32>LOG SESSION
  616.  
  617.  
  618.  
  619.  Where 'file-spec' is the file specification to use  for  the  session
  620.  
  621.  log  file.   If file-spec does not specify a file-type Kermit-32 will
  622.  
  623.  supply a default of .LOG.  If 'file-spec' is not present, the session
  624.  
  625.  log file is disabled.
  626.  
  627. 2 TRANSACTION
  628.  
  629.  
  630.  
  631.  The LOG TRANSACTION command sets the name of the file to be used as a
  632.  
  633.  transaction  log  file.   A  new version of this file is created each
  634.  
  635.  time  a  transfer  command  is  given  (SEND,  GET,  SERVER,   etc.).
  636.  
  637.  Information about the transfer is logged in this file.  This includes
  638.  
  639.  the names of the files being transferred, any errors, etc.
  640.  
  641.  
  642.  
  643.            Kermit-32>LOG TRANSACTION file-spec
  644.  
  645.       or
  646.  
  647.            Kermit-32>LOG TRANSACTION
  648.  
  649.  
  650.  
  651.  Where  'file-spec'  is  the  file  specification  to  use   for   the
  652.  
  653.  transaction  log  file.   If  file-spec  does not specify a file-type
  654.  
  655.  Kermit-32 will supply a default  of  .LOG.   If  'file-spec'  is  not
  656.  
  657.  present, the transaction log file is disabled.
  658.  
  659. 1 LOGOUT
  660.  
  661.  
  662.  
  663.  This command will cause Kermit-32 (when in local mode)  to  tell  the
  664.  
  665.  other  Kermit  (which  should  be in server mode) to exit from Kermit
  666.  
  667.  and, if applicable, terminate  its  job  (or  process,  etc.).   When
  668.  
  669.  Kermit-32  receives  the  acknowledgement that this is being done, it
  670.  
  671.  will prompt for another command.
  672.  
  673.  
  674.  
  675.            Kermit-32>LOGOUT
  676.  
  677. 1 Notes
  678.  
  679.  
  680.  
  681.  Kermit-32 knows how to handle most standard file types.  However,  it
  682.  
  683.  does not properly handle "stream" files.  You will probably find that
  684.  
  685.  stream files that contain binary data will  confuse  Kermit-32,  very
  686.  
  687.  likely  causing  buffer overflows.  You may be able to get around the
  688.  
  689.  problem by SET FILE TYPE BLOCK, but there is no  guarantee  the  file
  690.  
  691.  will get through unscathed.  Your best option would be to convert any
  692.  
  693.  stream files to another type before transferring them.
  694.  
  695.  
  696.  
  697.  FILE TYPE BLOCK causes Kermit to  do  Block  I/O  operations  ($READ,
  698.  
  699.  $WRITE),  instead  of  the  normal RMS $GET and $PUT operations.  Any
  700.  
  701.  file can be transferred using Block I/O, but the  record  information
  702.  
  703.  will be lost.
  704.  
  705.  
  706.  
  707.  When reading a file (any file type that Kermit-32 understands), it is
  708.  
  709.  not  necessary  to tell Kermit what the file type is.  When writing a
  710.  
  711.  file, be sure  to  set  FILE  TYPE  BINARY  or  FILE  TYPE  FIXED  as
  712.  
  713.  appropriate if the file is not a text file.
  714.  
  715. 1 PUSH
  716.  
  717.  
  718.  
  719.  The PUSH command spawns a DCL subprocess which allows you to interact
  720.  
  721.  with DCL without exiting Kermit-32.
  722.  
  723. 1 QUIT
  724.  
  725.  
  726.  
  727.  This command will cause Kermit-32 to return to command  level.   This
  728.  
  729.  is the same as the EXIT command.
  730.  
  731.  
  732.  
  733.            Kermit-32>QUIT
  734.  
  735. 1 RECEIVE
  736.  
  737.  
  738.  
  739.  The RECEIVE command is used to put Kermit-32 into remote mode waiting
  740.  
  741.  for  a  single file transfer transaction.  This is most useful if the
  742.  
  743.  other Kermit does not support local  server  commands.   If  no  file
  744.  
  745.  specification   is   given,   Kermit-32   will   use   whatever  file
  746.  
  747.  specification is supplied by the other Kermit  (suitably  altered  to
  748.  
  749.  conform  to  VAX/VMS  standards).   If a file specification is given,
  750.  
  751.  Kermit-32 will use that file specification instead of  that  supplied
  752.  
  753.  by  the  other Kermit.  This is most useful when the file name on the
  754.  
  755.  other system is such that it does not map well into  a  VAX/VMS  file
  756.  
  757.  specification.   Note  that  if  the other Kermit sends more than one
  758.  
  759.  file, the same name will be used for all of them.  Only  the  version
  760.  
  761.  numbers   will  be  different.   Therefore,  it  is  best  to  use  a
  762.  
  763.  file-specification on this command only when  transferring  a  single
  764.  
  765.  file.  The format of the command is:
  766.  
  767.  
  768.  
  769.            Kermit-32>RECEIVE
  770.  
  771.       or
  772.  
  773.            Kermit-32>RECEIVE file-spec
  774.  
  775.  
  776.  
  777.  Where 'file-spec' is any valid VAX/VMS file specification.
  778.  
  779. 1 REMOTE
  780.  
  781.  
  782.  
  783.  This command allows the user of Kermit-32 (in  local  mode)  to  give
  784.  
  785.  various  commands to the other Kermit (which must be in server mode).
  786.  
  787.  These commands provide for  listing  the  contents  of  a  directory,
  788.  
  789.  deleting  files,  typing  files,  displaying the amount of disk space
  790.  
  791.  used, etc.  Note that not all server Kermits  support  all  commands,
  792.  
  793.  but  all  server  Kermits  should  respond  with a message saying the
  794.  
  795.  command is not implemented if it does not support it.
  796.  
  797.  
  798.  
  799.            Kermit-32>REMOTE keyword arguments
  800.  
  801.  
  802.  
  803.  Where 'keyword' is the name of the command, and 'arguments'  are  the
  804.  
  805.  optional arguments for the command.
  806.  
  807. 2 COPY
  808.  
  809.  
  810.  
  811.  This causes Kermit-32 to request that the server Kermit make  a  copy
  812.  
  813.  of  the  specified file.  Both the old and new files are files on the
  814.  
  815.  server's system - no file transfer  between  systems  is  done.   The
  816.  
  817.  server  Kermit  should  respond  with some indication that either the
  818.  
  819.  file was successfully copied, or with an error  message.   Note  that
  820.  
  821.  some  versions  of Kermit will allow wild-carded copies, while others
  822.  
  823.  will only allow a single file to be copied per command.
  824.  
  825.  
  826.  
  827.            Kermit-32>REMOTE COPY old-remote-file
  828.  
  829.            New file:  new-remote-file
  830.  
  831.  
  832.  
  833.  Where 'old-remote-file' is the name of the file you wish to copy, and
  834.  
  835.  'new-remote-file' is the name for the copy.
  836.  
  837. 2 CWD
  838.  
  839.  
  840.  
  841.  This command (short for "Change Working Directory") causes  Kermit-32
  842.  
  843.  to request that the server Kermit change the default directory (path,
  844.  
  845.  device, etc.) that will be used for files  whose  specification  does
  846.  
  847.  not  include  the directory information.  For some systems a password
  848.  
  849.  can be supplied which will allow access to the new directory.   Since
  850.  
  851.  Kermit-32 can not know whether the server Kermit requires a password,
  852.  
  853.  it will always ask for one.  If no  directory  is  specified  in  the
  854.  
  855.  command, the server Kermit will set the default directory back to the
  856.  
  857.  users default.  This may be either the directory which is the default
  858.  
  859.  when a job created, or the default directory which was in effect when
  860.  
  861.  the server Kermit was started.  The server Kermit should respond with
  862.  
  863.  a  message  which  indicates where the new default directory has been
  864.  
  865.  set, or with an error message.
  866.  
  867.  
  868.  
  869.            Kermit-32>REMOTE CWD remote-directory-spec
  870.  
  871.            Password:  password for remote directory
  872.  
  873.       or
  874.  
  875.            Kermit-32>REMOTE CWD
  876.  
  877.  
  878.  
  879.  Where 'remote-directory-spec' is a string which is  acceptable  as  a
  880.  
  881.  directory specification for the server system.  The 'password' is any
  882.  
  883.  string which is required as  a  password  for  access  to  the  given
  884.  
  885.  directory.  The password will not be echoed.
  886.  
  887. 2 DELETE
  888.  
  889.  
  890.  
  891.  This causes Kermit-32 to request the  server  Kermit  to  delete  the
  892.  
  893.  specified  file  (or  files  if  the server Kermit supports wild-card
  894.  
  895.  deletes).  The server Kermit should respond with a message indicating
  896.  
  897.  whether the file (or files) has been deleted.
  898.  
  899.  
  900.  
  901.            Kermit-32>REMOTE DELETE file-spec
  902.  
  903.  
  904.  
  905.  Where 'file-spec' is  a  valid  file  specification  for  the  remote
  906.  
  907.  Kermit's system.
  908.  
  909. 2 DIRECTORY
  910.  
  911.  
  912.  
  913.  This causes Kermit-32 to request a directory listing from the  server
  914.  
  915.  Kermit.  The directory listing will be printed on the users terminal.
  916.  
  917.  The format of the listing is determined by the server Kermit.
  918.  
  919.  
  920.  
  921.            Kermit-32>REMOTE DIRECTORY file-spec
  922.  
  923.       or
  924.  
  925.            Kermit-32>REMOTE DIRECTORY
  926.  
  927.  
  928.  
  929.  Where 'file-spec' is  a  valid  file  specification  for  the  server
  930.  
  931.  Kermit's system.
  932.  
  933. 2 DISK_USAGE
  934.  
  935.  
  936.  
  937.  This causes Kermit-32 to request the server Kermit to reply  with  an
  938.  
  939.  indication  of  the  amount  of disk space used and available for the
  940.  
  941.  given directory (or the default directory if none is given).
  942.  
  943.  
  944.  
  945.            Kermit-32>REMOTE DISK_USAGE directory-spec
  946.  
  947.       or
  948.  
  949.            Kermit-32>REMOTE DISK_USAGE
  950.  
  951.  
  952.  
  953.  Where 'directory-spec' is a directory specification  for  the  server
  954.  
  955.  Kermit's system.  REMOTE SPACE is a synonym for the REMOTE DISK_USAGE
  956.  
  957.  command.
  958.  
  959. 2 EXIT
  960.  
  961.  
  962.  
  963.  This command is identical to the FINISH  command.   It  requests  the
  964.  
  965.  server  Kermit  to  exit  to  its system command parser, allowing the
  966.  
  967.  terminal to be used for normal commands.
  968.  
  969.  
  970.  
  971.            Kermit-32>REMOTE EXIT
  972.  
  973. 2 HELP
  974.  
  975.  
  976.  
  977.  This causes Kermit-32 to request the server Kermit to  reply  with  a
  978.  
  979.  short  summary  of  what  commands it supports in server mode.  If an
  980.  
  981.  argument is given, help on the  specific  topic  is  requested.   The
  982.  
  983.  resulting help message will be typed on the users terminal.
  984.  
  985.  
  986.  
  987.            Kermit-32>REMOTE HELP
  988.  
  989.       or
  990.  
  991.            Kermit-32>REMOTE HELP topic
  992.  
  993.  
  994.  
  995.  Where 'topic' is a subject for more detailed help.  If  no  topic  is
  996.  
  997.  given, a general help message is requested.
  998.  
  999. 2 HOST
  1000.  
  1001.  
  1002.  
  1003.  This command requests the server  Kermit  to  perform  the  specified
  1004.  
  1005.  command  as  if it were typed by the user on a terminal.  Any results
  1006.  
  1007.  of the command will be printed on the  user's  terminal.   Note  that
  1008.  
  1009.  this should only be used for commands which will not require any more
  1010.  
  1011.  user input, since there will be no way for the user to interact  with
  1012.  
  1013.  the remote system to supply more input.
  1014.  
  1015.  
  1016.  
  1017.            Kermit-32>REMOTE HOST command
  1018.  
  1019.  
  1020.  
  1021.  Where 'command' is any valid command to be processed  by  the  remote
  1022.  
  1023.  systems standard command parser.
  1024.  
  1025. 2 LOGIN
  1026.  
  1027.  
  1028.  
  1029.  This command allows  the  user  to  supply  the  server  Kermit  with
  1030.  
  1031.  accounting  information.   The server Kermit may use this to validate
  1032.  
  1033.  the users access to the system as well as for billing  purposes.   It
  1034.  
  1035.  may  also  use  this  information  to provide the user with access to
  1036.  
  1037.  files on its system.
  1038.  
  1039.  
  1040.  
  1041.            Kermit-32>REMOTE LOGIN user-id
  1042.  
  1043.            Account:  remote-accounting-info
  1044.  
  1045.            Password:  remote-password
  1046.  
  1047.  
  1048.  
  1049.  Where  'user-id'  is  a  string  which  represents   a   valid   user
  1050.  
  1051.  identification  on the remote system, 'remote-accounting-info' is any
  1052.  
  1053.  additional accounting information required by the remote system (such
  1054.  
  1055.  as  account  strings),  and 'remote-password' is the password for the
  1056.  
  1057.  remote system which corresponds to the given 'user-id'.  The password
  1058.  
  1059.  will not be echoed.
  1060.  
  1061. 2 LOGOUT
  1062.  
  1063.  
  1064.  
  1065.  This command is the same as the LOGOUT command.  It will request  the
  1066.  
  1067.  server Kermit to exit and logout its job.
  1068.  
  1069.  
  1070.  
  1071.            Kermit-32>REMOTE LOGOUT
  1072.  
  1073. 2 RENAME
  1074.  
  1075.  
  1076.  
  1077.  This command causes Kermit-32  to  request  that  the  server  Kermit
  1078.  
  1079.  change  the name of a file.  The server Kermit should respond with an
  1080.  
  1081.  indication that the operation is completed successfully, or else with
  1082.  
  1083.  an  error  message.   Some version of Kermit may allow wild-card file
  1084.  
  1085.  specifications to be used, and will respond with a list of files  and
  1086.  
  1087.  new names.
  1088.  
  1089.  
  1090.  
  1091.            Kermit-32>REMOTE RENAME old-remote-file
  1092.  
  1093.            New file:  new-remote-file
  1094.  
  1095.  
  1096.  
  1097.  Where 'old-remote-file' is the name of the file to  be  renamed,  and
  1098.  
  1099.  'new-remote-file' is the new name for the file.
  1100.  
  1101. 2 SEND_MESSAGE
  1102.  
  1103.  
  1104.  
  1105.  This command requests the server Kermit to send a  short  (one  line)
  1106.  
  1107.  message  to  the  given  destination.   Depending  on the system, the
  1108.  
  1109.  destination may be a terminal, a user name, a mailbox  name  or  some
  1110.  
  1111.  other  destination address.  The server Kermit should respond with an
  1112.  
  1113.  indication of success or failure.
  1114.  
  1115.  
  1116.  
  1117.            Kermit-32>REMOTE SEND_MESSAGE destination-address
  1118.  
  1119.            Message:  message-text
  1120.  
  1121.  
  1122.  
  1123.  Where 'destination-address' is a valid destination for  the  server's
  1124.  
  1125.  system, and 'message-text' is the message to be sent.
  1126.  
  1127. 2 STATUS
  1128.  
  1129.  
  1130.  
  1131.  This requests the status of the server  Kermit.   The  server  Kermit
  1132.  
  1133.  will reply with some indication of its status.
  1134.  
  1135.  
  1136.  
  1137.            Kermit-32>REMOTE STATUS
  1138.  
  1139. 2 TYPE
  1140.  
  1141.  
  1142.  
  1143.  This causes Kermit-32 to request the server Kermit  to  transmit  the
  1144.  
  1145.  specified  file  (or files if the server supports wild-cards) so that
  1146.  
  1147.  the file(s) can be typed on the users terminal.
  1148.  
  1149.  
  1150.  
  1151.            Kermit-32>REMOTE TYPE file-spec
  1152.  
  1153.  
  1154.  
  1155.  Where 'file-spec' is  a  valid  file  specification  for  the  server
  1156.  
  1157.  Kermit's system.
  1158.  
  1159. 2 WHO
  1160.  
  1161.  
  1162.  
  1163.  This requests the server Kermit to display a list  of  users  of  its
  1164.  
  1165.  system,  along  with other information about the users and/or system.
  1166.  
  1167.  A specific user-id may be supplied, which may result in more detailed
  1168.  
  1169.  information about the particular user.  It is also possible to supply
  1170.  
  1171.  options for use by the server Kermit in determining the format, etc.,
  1172.  
  1173.  of the resulting list.
  1174.  
  1175.  
  1176.  
  1177.            Kermit-32>REMOTE WHO user-id
  1178.  
  1179.            Options:  options-list
  1180.  
  1181.  
  1182.  
  1183.  Where 'user-id' is an optional string representing a  specific  user,
  1184.  
  1185.  and  'options-list'  is  an  optional list of formatting or selection
  1186.  
  1187.  options.
  1188.  
  1189. 1 SEND
  1190.  
  1191.  
  1192.  
  1193.  The SEND command will allow you  to  send  a  file(s)  to  the  other
  1194.  
  1195.  Kermit.   The SEND command will allow file wild-card processing as is
  1196.  
  1197.  found in VAX/VMS.  If Kermit-32 is running in remote mode,  the  file
  1198.  
  1199.  will  be  sent  on  the  controlling  terminal line after waiting the
  1200.  
  1201.  number of seconds specified by the SET DELAY command.  This gives the
  1202.  
  1203.  user  time  to  escape  back  to the other Kermit and issue a receive
  1204.  
  1205.  command.  If Kermit-32 is running in local mode,  the  file  will  be
  1206.  
  1207.  sent  immediately  on  the  terminal  line  specified by the SET LINE
  1208.  
  1209.  command.
  1210.  
  1211.  
  1212.  
  1213.            Kermit-32>SEND file-spec
  1214.  
  1215.  
  1216.  
  1217.  Where 'file-spec' is any valid VAX/VMS file specification.
  1218.  
  1219. 1 SERVER
  1220.  
  1221.  
  1222.  
  1223.  This command will cause Kermit-32 to enter server  mode.   The  other
  1224.  
  1225.  Kermit  can  then  issue  server  commands  to send and receive files
  1226.  
  1227.  without having  to  give  SEND  or  RECEIVE  commands  to  Kermit-32.
  1228.  
  1229.  Kermit-32  may  be  put  into  SERVER  mode while running as either a
  1230.  
  1231.  remote Kermit (transmitting over the controlling terminal  line),  or
  1232.  
  1233.  as  a  local  Kermit (transmitting over a terminal specified by a SET
  1234.  
  1235.  LINE command).  Note that in order to correctly receive binary  files
  1236.  
  1237.  while  in  SERVER  mode,  a SET FILE TYPE BINARY command must be done
  1238.  
  1239.  first.  At this time there is  no  way  for  Kermit-32  to  determine
  1240.  
  1241.  whether an incoming file is ASCII or binary.
  1242.  
  1243.  
  1244.  
  1245.            Kermit-32>SERVER
  1246.  
  1247. 1 SET
  1248.  
  1249.  
  1250.  
  1251.  The SET command is used to set various parameters in Kermit-32.
  1252.  
  1253. 2 BLOCK_CHECK_TYPE
  1254.  
  1255.  
  1256.  
  1257.  The SET BLOCK_CHECK_TYPE command is used to  determine  the  type  of
  1258.  
  1259.  block  check  sequence  which  will be used during transmission.  The
  1260.  
  1261.  block check sequence is used to detect  transmission  errors.   There
  1262.  
  1263.  are  three  types  of  block  checks available.  These are the single
  1264.  
  1265.  character checksum (default), the two  character  checksum,  and  the
  1266.  
  1267.  three character CRC (cyclic redundancy check).  This command does not
  1268.  
  1269.  ensure that the desired type of block check will be used, since  both
  1270.  
  1271.  Kermit  programs  involved  in  the  transfer must agree on the block
  1272.  
  1273.  check type.  Kermit-32 will request that the type of block check  set
  1274.  
  1275.  by this command be used for a transfer.  If the other Kermit has also
  1276.  
  1277.  had the same block check type requested, then the desired block check
  1278.  
  1279.  type  will be used.  Otherwise, the single character checksum will be
  1280.  
  1281.  used.  (See Kermit protocol manual for more information.)
  1282.  
  1283.  
  1284.  
  1285.            Kermit-32>SET BLOCK_CHECK_TYPE type
  1286.  
  1287.  
  1288.  
  1289.  Where 'type' is one of:
  1290.  
  1291.  
  1292.  
  1293.   o  1_CHARACTER_CHECKSUM or ONE_CHARACTER_CHECKSUM
  1294.  
  1295.  
  1296.  
  1297.   o  2_CHARACTER_CHECKSUM or TWO_CHARACTER_CHECKSUM
  1298.  
  1299.  
  1300.  
  1301.   o  3_CHARACTER_CRC_CCITT or THREE_CHARACTER_CRC_CCITT
  1302.  
  1303.  
  1304.  
  1305. 2 DEBUGGING
  1306.  
  1307.  
  1308.  
  1309.  The SET DEBUGGING command is used to set the debug  type-out  on  the
  1310.  
  1311.  user's  terminal.  The command will accept either of the states ON or
  1312.  
  1313.  OFF.  Kermit-32 can only do debugging  type-out  when  running  as  a
  1314.  
  1315.  local  Kermit (SET LINE command done).  This is because the debugging
  1316.  
  1317.  type-out would interfere with the file transfer if it  were  sent  to
  1318.  
  1319.  the controlling terminal line in remote mode.
  1320.  
  1321.  
  1322.  
  1323.            Kermit-32>SET DEBUGGING state
  1324.  
  1325.  
  1326.  
  1327.  Where 'state' is either ON or OFF.
  1328.  
  1329. 2 DELAY
  1330.  
  1331.  
  1332.  
  1333.  The DELAY parameter is the number of seconds to wait  before  sending
  1334.  
  1335.  data  after  a SEND command is given.  This is used when Kermit-32 is
  1336.  
  1337.  running in remote mode to allow the user time to escape back  to  the
  1338.  
  1339.  other Kermit and give a RECEIVE command.
  1340.  
  1341.  
  1342.  
  1343.            Kermit-32>SET DELAY n
  1344.  
  1345.  
  1346.  
  1347.  Where 'n' is the number of seconds to wait before sending data.
  1348.  
  1349. 2 ESCAPE
  1350.  
  1351.  
  1352.  
  1353.  This  command  will  set  the  escape  character  for   the   CONNECT
  1354.  
  1355.  processing.   The  command will take the octal value of the character
  1356.  
  1357.  to use as the escape character.  This is the character which is  used
  1358.  
  1359.  to  "escape"  back  to Kermit-32 after using the CONNECT command.  It
  1360.  
  1361.  defaults to 35 octal (ASCII GS, CTRL-]).
  1362.  
  1363.  
  1364.  
  1365.  It is usually a good idea to set this character to something which is
  1366.  
  1367.  not  used  (or  at  least  not used very much) on the system to which
  1368.  
  1369.  Kermit-32 is CONNECTing.
  1370.  
  1371.  
  1372.  
  1373.            Kermit-32>SET ESCAPE octal-char-value
  1374.  
  1375.  
  1376.  
  1377.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  1378.  
  1379.  character to use as the escape character.
  1380.  
  1381. 2 FILE
  1382.  
  1383.  
  1384.  
  1385.  The SET FILE command allows setting of  parameters  relating  to  the
  1386.  
  1387.  file format and file naming conventions used by Kermit-32.
  1388.  
  1389. 3 BLOCKSIZE
  1390.  
  1391.  
  1392.  
  1393.  This  command  sets  the  record  size  to  be  used  when   creating
  1394.  
  1395.  (receiving) files in either BINARY or FIXED mode.
  1396.  
  1397.  
  1398.  
  1399.            Kermit-32>SET FILE BLOCKSIZE n
  1400.  
  1401.  
  1402.  
  1403.  Where 'n' is the record size in  bytes.   The  default  is  512  byte
  1404.  
  1405.  records.
  1406.  
  1407. 3 NAMING
  1408.  
  1409.  
  1410.  
  1411.  This command sets the type of processing Kermit-32 should do on  file
  1412.  
  1413.  names  that  are  being sent and received.  Kermit-32 can either send
  1414.  
  1415.  the complete file specification (including device, directories,  file
  1416.  
  1417.  name,  file  type and version number) or only the file name and type.
  1418.  
  1419.  When receiving a file specification, Kermit-32 can either attempt  to
  1420.  
  1421.  use  it  as a VAX/VMS file specification as is, or first perform some
  1422.  
  1423.  substitutions  and  truncations  in  order  to  force  the   received
  1424.  
  1425.  specification to be just a valid file name and type.
  1426.  
  1427.  
  1428.  
  1429.            Kermit-32>SET FILE NAMING type
  1430.  
  1431.  
  1432.  
  1433.  Where 'type' is either FULL, NORMAL_FORM or UNTRANSLATED.
  1434.  
  1435. 4 FULL
  1436.  
  1437.  
  1438.  
  1439.  This will cause Kermit-32 to send complete  file  specifications  and
  1440.  
  1441.  perform no translations on received file specifications.
  1442.  
  1443. 4 NORMAL_FORM
  1444.  
  1445.  
  1446.  
  1447.  This will cause Kermit-32 to send only the file name and  file  type,
  1448.  
  1449.  and  perform  translations  on  received file specifications to force
  1450.  
  1451.  them to be only a valid file name and type.
  1452.  
  1453. 4 UNTRANSLATED
  1454.  
  1455.  
  1456.  
  1457.  This will cause Kermit-32 to send only the file name and  file  type,
  1458.  
  1459.  and perform no translations on received file specifications.
  1460.  
  1461. 3 TYPE
  1462.  
  1463.  
  1464.  
  1465.  This command will set the file type that Kermit-32 is  receiving.   A
  1466.  
  1467.  file  type of ASCII should be used to receive text files which are to
  1468.  
  1469.  be used as text files on the VAX/VMS system.  The  file  type  BINARY
  1470.  
  1471.  should  be used for binary files, such as CP/M .COM files, which need
  1472.  
  1473.  to be kept in a format that allows the file to  be  returned  without
  1474.  
  1475.  any changes.
  1476.  
  1477.  
  1478.  
  1479.            Kermit-32>SET FILE TYPE type
  1480.  
  1481.  
  1482.  
  1483.  Where 'type' is either ASCII, BINARY, BLOCK or FIXED.
  1484.  
  1485. 4 ASCII
  1486.  
  1487.  
  1488.  
  1489.  File type ASCII is for text files.
  1490.  
  1491. 4 BINARY
  1492.  
  1493.  
  1494.  
  1495.  File type BINARY is for non-text files.  Note that binary files which
  1496.  
  1497.  are  generated  on  a VAX/VMS system cannot be transferred to another
  1498.  
  1499.  VAX/VMS system without losing file attributes.
  1500.  
  1501. 4 BLOCK
  1502.  
  1503.  
  1504.  
  1505.  File type BLOCK causes Kermit to  do  Block  I/O  operations  ($READ,
  1506.  
  1507.  $WRITE),  instead  of  the  normal RMS $GET and $PUT operations.  Any
  1508.  
  1509.  file can be transferred using Block I/O, but the  record  information
  1510.  
  1511.  will be lost.
  1512.  
  1513.  
  1514.  
  1515.  This type is most useful when a file has a set  of  attributes  which
  1516.  
  1517.  would  generate  extra  characters when kermit transmits a line.  One
  1518.  
  1519.  such example would be a file with the record attribute  of  "Carriage
  1520.  
  1521.  return carriage control" and a record format of FIXED or STREAM.
  1522.  
  1523.  
  1524.  
  1525.  Type BINARY would normally add a <CR><LF> at the end of  each  record
  1526.  
  1527.  transmitted;  type  BLOCK  will  transmit the file as it is stored on
  1528.  
  1529.  disk, including record length counts or record seperators imbedded in
  1530.  
  1531.  the file, without regard for record boundaries.
  1532.  
  1533. 4 FIXED
  1534.  
  1535.  
  1536.  
  1537.  The FIXED file type will cause Kermit-32 to create a file with  fixed
  1538.  
  1539.  length  records,  containing  only  the  data received from the other
  1540.  
  1541.  Kermit.  Unless specified with the SET  FILE  BLOCKSIZE  command  the
  1542.  
  1543.  file  will be created with 512 byte records.  This format can be used
  1544.  
  1545.  for transferring VAX/VMS .EXE files or RSX-11/M (P/OS) .TSK files, or
  1546.  
  1547.  any other binary file which is stored in fixed length record format.
  1548.  
  1549. 2 HANDSHAKE
  1550.  
  1551.  
  1552.  
  1553.  Sets the half duplex line turnaround  handshake  character  Kermit-32
  1554.  
  1555.  will  use.   Normally  required  for  communication  with half duplex
  1556.  
  1557.  systems like IBM mainframes.
  1558.  
  1559.  
  1560.  
  1561.            Kermit-32>SET HANDSHAKE octal-char-value
  1562.  
  1563.       or
  1564.  
  1565.            Kermit-32>SET HANDSHAKE NONE
  1566.  
  1567.  
  1568.  
  1569.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  1570.  
  1571.  character to use for the handshake character.  The SET HANDSHAKE NONE
  1572.  
  1573.  command turns handshaking off.
  1574.  
  1575. 2 IBM_MODE
  1576.  
  1577.  
  1578.  
  1579.  The SET IBM_MODE command allows Kermit-32 to be put into a mode which
  1580.  
  1581.  will  allow  transfers to an IBM host.  This causes Kermit-32 to wait
  1582.  
  1583.  for the IBM turnaround character (XON,  CTRL-Q)  before  sending  any
  1584.  
  1585.  characters to the other Kermit.  It also forces the parity type to be
  1586.  
  1587.  mark, and turns on local echo for the CONNECT command.
  1588.  
  1589.  
  1590.  
  1591.            Kermit-32>SET IBM_MODE state
  1592.  
  1593.  
  1594.  
  1595.  Where 'state' is either ON or OFF.
  1596.  
  1597. 2 INCOMPLETE_FILE_DISPOSITION
  1598.  
  1599.  
  1600.  
  1601.  The  SET  INCOMPLETE_FILE_DISPOSITION  command  allows  the  user  to
  1602.  
  1603.  determine  what  is done with a file that is not completely received.
  1604.  
  1605.  If the disposition is KEEP, all files received will be kept, even  if
  1606.  
  1607.  only  a  portion  of  the  file  is  received.  If the disposition is
  1608.  
  1609.  DISCARD (the default), files which are not  completely  received  are
  1610.  
  1611.  discarded.
  1612.  
  1613.  
  1614.  
  1615.            Kermit-32>SET INCOMPLETE_FILE_DISPOSITION action
  1616.  
  1617.  
  1618.  
  1619.  Where 'action' is either DISCARD or KEEP.
  1620.  
  1621. 2 LINE
  1622.  
  1623.  
  1624.  
  1625.  This will set the terminal line that you  are  using.   The  terminal
  1626.  
  1627.  line  must  be  one  which  is accessible to the users process.  This
  1628.  
  1629.  means that the applicable protection code for the terminal must  have
  1630.  
  1631.  been  set  to  allow  your  process  to access it (done by the system
  1632.  
  1633.  manager).
  1634.  
  1635.  
  1636.  
  1637.            Kermit-32>SET LINE terminal-name
  1638.  
  1639.  
  1640.  
  1641.  The 'terminal-name' device must be a terminal line (e.g.  TTA0:).
  1642.  
  1643. 2 LOCAL_ECHO
  1644.  
  1645.  
  1646.  
  1647.  The SET LOCAL_ECHO command specifies  whether  characters  should  be
  1648.  
  1649.  echoed  locally  when CONNECTing to another system.  If LOCAL_ECHO is
  1650.  
  1651.  set to ON, any  character  typed  on  the  terminal  will  be  echoed
  1652.  
  1653.  immediately  to  the  terminal,  as  well  as being sent to the other
  1654.  
  1655.  system.  If LOCAL_ECHO is set to OFF (the  default),  the  characters
  1656.  
  1657.  typed  on the terminal are only sent to the other system (which would
  1658.  
  1659.  normally be echoing the characters).
  1660.  
  1661.  
  1662.  
  1663.            Kermit-32>SET LOCAL_ECHO state
  1664.  
  1665.  
  1666.  
  1667.  Where 'state' is either ON or OFF.
  1668.  
  1669. 2 MESSAGE
  1670.  
  1671.  
  1672.  
  1673.  This command sets the type  of  type-out  Kermit-32  will  do  during
  1674.  
  1675.  transfers   in   local   mode.   Kermit-32  can  type  out  the  file
  1676.  
  1677.  specification being transferred, the packet numbers  being  sent  and
  1678.  
  1679.  received,   both   or   neither.    The   default  is  to  type  file
  1680.  
  1681.  specifications but not packet numbers.
  1682.  
  1683.  
  1684.  
  1685.            Kermit-32>SET MESSAGE type state
  1686.  
  1687.  
  1688.  
  1689.  Where 'type' is either FILE or PACKET, and 'state' is  either  ON  or
  1690.  
  1691.  OFF.
  1692.  
  1693. 2 PARITY
  1694.  
  1695.  
  1696.  
  1697.  This command determines the type of parity to use on the transmission
  1698.  
  1699.  line.  Kermit-32 normally uses characters which consist of eight data
  1700.  
  1701.  bits with no parity bit.  For systems  or  transmission  media  which
  1702.  
  1703.  require  a  specific  parity  type,  Kermit-32 can send characters as
  1704.  
  1705.  seven data bits plus a parity bit.
  1706.  
  1707.  
  1708.  
  1709.            Kermit-32>SET PARITY state
  1710.  
  1711.  
  1712.  
  1713.  Where 'state' is one of:
  1714.  
  1715.  
  1716.  
  1717.   o  NONE (default) - eight data bits and no parity bit.
  1718.  
  1719.  
  1720.  
  1721.   o  MARK - seven data bits with the parity bit set to one.
  1722.  
  1723.  
  1724.  
  1725.   o  SPACE - seven data bits with the parity bit set to zero.
  1726.  
  1727.  
  1728.  
  1729.   o  EVEN - seven data bits with  the  parity  bit  set  to  make  the
  1730.  
  1731.      overall parity even.
  1732.  
  1733.  
  1734.  
  1735.   o  ODD - seven data bits with the parity bit set to make the overall
  1736.  
  1737.      parity odd.
  1738.  
  1739.  
  1740.  
  1741. 2 PROMPT
  1742.  
  1743.  
  1744.  
  1745.  This command sets the string to be used for the command  prompt.   If
  1746.  
  1747.  no argument is given, the default prompt (Kermit-32>) is used.
  1748.  
  1749.  
  1750.  
  1751.            Kermit-32>SET PROMPT new-prompt-text
  1752.  
  1753.       or
  1754.  
  1755.            Kermit-32>SET PROMPT
  1756.  
  1757.  
  1758.  
  1759.  Where 'new-prompt-text' is the new prompt to use.
  1760.  
  1761. 2 RECEIVE
  1762.  
  1763.  
  1764.  
  1765.  It  is  possible  to  set  various  parameters  associated  with  the
  1766.  
  1767.  receiving  of  the  data  from  the  remote Kermit.  SET RECEIVE will
  1768.  
  1769.  enable you to set the various receive parameters.
  1770.  
  1771. 3 END_OF_LINE
  1772.  
  1773.  
  1774.  
  1775.  This will set the end of line  character  the  Kermit-32  expects  to
  1776.  
  1777.  receive  from  the  remote  Kermit.   This  is  the  character  which
  1778.  
  1779.  terminates a packet.  The parameter must be an octal  number  in  the
  1780.  
  1781.  range 1 to 37.  The default value is 15 octal (ASCII CR, CTRL-M).
  1782.  
  1783.  
  1784.  
  1785.            Kermit-32>SET RECEIVE END_OF_LINE octal-char-value
  1786.  
  1787.  
  1788.  
  1789.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  1790.  
  1791.  character to use for the end of line character.
  1792.  
  1793. 3 EIGHT_BIT_QUOTE
  1794.  
  1795.  
  1796.  
  1797.  This command sets the character to be used (when necessary) to  quote
  1798.  
  1799.  characters  which have the eighth bit (parity bit) set.  This is used
  1800.  
  1801.  to transfer eight-bit bytes  on  a  transmission  medium  which  only
  1802.  
  1803.  supports  seven  data bits.  The parameter must be an octal number in
  1804.  
  1805.  the range 41 to 76 or 140 to 176.  The  default  value  is  46  octal
  1806.  
  1807.  (ASCII  "&").   Eighth-bit  quoting  will only be used if both Kermit
  1808.  
  1809.  programs can handle it, and the transmission medium does not transmit
  1810.  
  1811.  8 data bits (as indicated by the SET PARITY command).
  1812.  
  1813.  
  1814.  
  1815.            Kermit-32>SET RECEIVE EIGHT_BIT_QUOTE octal-char-value
  1816.  
  1817.  
  1818.  
  1819.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  1820.  
  1821.  character  to  use  for  quoting characters which have the eighth bit
  1822.  
  1823.  set.
  1824.  
  1825. 3 PACKET_LENGTH
  1826.  
  1827.  
  1828.  
  1829.  This will  set  the  receive  packet  length.   The  value  for  this
  1830.  
  1831.  parameter  must  be  between  10 and 1000.  Packet lengths outside of
  1832.  
  1833.  this range are illegal.  The default value is 80.
  1834.  
  1835.  
  1836.  
  1837.            Kermit-32>SET RECEIVE PACKET_LENGTH n
  1838.  
  1839.  
  1840.  
  1841.  Where 'n' is the receive packet length to use.
  1842.  
  1843. 3 PADCHAR
  1844.  
  1845.  
  1846.  
  1847.  This parameter is the padding character that is sent  to  the  remote
  1848.  
  1849.  Kermit.   The  parameter must be an octal number in the range of 0 to
  1850.  
  1851.  37 or 177.  The default value is 0 (ASCII NUL, CTRL-@).
  1852.  
  1853.  
  1854.  
  1855.            Kermit-32>SET RECEIVE PADCHAR octal-char-value
  1856.  
  1857.  
  1858.  
  1859.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  1860.  
  1861.  character to be used as a pad character.
  1862.  
  1863. 3 PADDING
  1864.  
  1865.  
  1866.  
  1867.  This command will set the number of padding characters that  will  be
  1868.  
  1869.  sent to the other Kermit.  The default value is 0.
  1870.  
  1871.  
  1872.  
  1873.            Kermit-32>SET RECEIVE PADDING n
  1874.  
  1875.  
  1876.  
  1877.  Where 'n' is the number of padding characters to use.
  1878.  
  1879. 3 QUOTE
  1880.  
  1881.  
  1882.  
  1883.  This will set the quoting character that  Kermit-32  will  expect  on
  1884.  
  1885.  incoming  messages.   This  is  the  character  used to quote control
  1886.  
  1887.  characters.  The parameter must be an octal number in the range 40 to
  1888.  
  1889.  176.  The default value is 43 octal (ASCII "#").
  1890.  
  1891.  
  1892.  
  1893.            Kermit-32>SET RECEIVE QUOTE octal-char-value
  1894.  
  1895.  
  1896.  
  1897.  Where 'octal-char-value' is the ASCII value (in octal) of the quoting
  1898.  
  1899.  character.
  1900.  
  1901. 3 START_OF_PACKET
  1902.  
  1903.  
  1904.  
  1905.  This command will set the start of packet  character  for  Kermit-32.
  1906.  
  1907.  The  start of packet character must be in the range of 1 to 37 octal.
  1908.  
  1909.  The default value is 1 (ASCII SOH, CTRL-A).  This value  should  only
  1910.  
  1911.  be  changed if absolutely necessary.  It must be set the same in both
  1912.  
  1913.  Kermit programs.
  1914.  
  1915.  
  1916.  
  1917.            Kermit-32>SET RECEIVE START_OF_PACKET octal-char-value
  1918.  
  1919.  
  1920.  
  1921.  Where 'octal-char-value' is the ASCII value (in octal) of the receive
  1922.  
  1923.  start-of-packet character to use.
  1924.  
  1925. 3 TIMEOUT
  1926.  
  1927.  
  1928.  
  1929.  This will set the number of seconds before Kermit-32  will  time  out
  1930.  
  1931.  the  attempt  to  receive a message.  This time out is used to handle
  1932.  
  1933.  transmission errors which totally lose a message.  The default  value
  1934.  
  1935.  is 15 seconds.
  1936.  
  1937.  
  1938.  
  1939.            Kermit-32>SET RECEIVE TIMEOUT n
  1940.  
  1941.  
  1942.  
  1943.  Where 'n' is the number of seconds to wait for a message.
  1944.  
  1945. 2 REPEAT_QUOTE
  1946.  
  1947.  
  1948.  
  1949.  This command sets the character to be used as the  lead-in  character
  1950.  
  1951.  for  a  repeat sequence (a string of characters which represents some
  1952.  
  1953.  number of characters which are repeated in the  data).   Both  Kermit
  1954.  
  1955.  programs  must  support  repeat compression for this to be in effect.
  1956.  
  1957.  The parameter must be an octal number in the range 41 to 76 or 140 to
  1958.  
  1959.  176.  The default value is 176 octal (ASCII "~").  The character will
  1960.  
  1961.  only be used on files which are being transmitted by Kermit-32.   The
  1962.  
  1963.  REPEAT_QUOTE  character  used for incoming files is decided on by the
  1964.  
  1965.  other Kermit.  A value of 40 octal  (a  space)  will  disable  repeat
  1966.  
  1967.  compression.
  1968.  
  1969.  
  1970.  
  1971.            Kermit-32>SET REPEAT_QUOTE octal-char-value
  1972.  
  1973.  
  1974.  
  1975.  Where 'octal-char-value' is the ASCII value (in octal) for the repeat
  1976.  
  1977.  quoting character.
  1978.  
  1979. 2 RETRY
  1980.  
  1981.  
  1982.  
  1983.  This command sets the maximum number of times Kermit-32 should try to
  1984.  
  1985.  send  specific  packets.   There  are two retry maximums, one for the
  1986.  
  1987.  initial connection packet (the "SEND-INIT"), the other for all  other
  1988.  
  1989.  packets.   The  default  value  for  initial  connections  is 5.  The
  1990.  
  1991.  default value for all other packets is 16.
  1992.  
  1993.  
  1994.  
  1995.            Kermit-32>SET RETRY type n
  1996.  
  1997.  
  1998.  
  1999.  Where 'type' is either  INITIAL_CONNECTION  (for  initial  connection
  2000.  
  2001.  packet)  or  PACKET (for all other packets), and 'n' is the number of
  2002.  
  2003.  retries (in decimal) to attempt.
  2004.  
  2005. 2 SEND
  2006.  
  2007.  
  2008.  
  2009.  It  is  possible  to  set  various  parameters  associated  with  the
  2010.  
  2011.  receiving  of  the data from the remote Kermit.  SET SEND will enable
  2012.  
  2013.  you to set the various SEND parameters.  These parameters should  not
  2014.  
  2015.  normally be set, since as part of the transfer initialization process
  2016.  
  2017.  the two Kermit  programs  exchange  their  RECEIVE  parameters.   The
  2018.  
  2019.  capability  of  setting  these  parameters  is  provided  so that the
  2020.  
  2021.  transfer  initialization  can  be  completed  even  if  the   default
  2022.  
  2023.  parameters are not correct.
  2024.  
  2025. 3 END_OF_LINE
  2026.  
  2027.  
  2028.  
  2029.  This will set the end of line character the Kermit-32  will  send  to
  2030.  
  2031.  the  remote Kermit.  This is the character which terminates a packet.
  2032.  
  2033.  The parameter must be an octal number in the  range  1  to  37.   The
  2034.  
  2035.  default value is 15 octal (ASCII CR, CTRL-M).
  2036.  
  2037.  
  2038.  
  2039.            Kermit-32>SET SEND END_OF_LINE octal-char-value
  2040.  
  2041.  
  2042.  
  2043.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  2044.  
  2045.  character to use for the end of line character.
  2046.  
  2047. 3 PACKET_LENGTH
  2048.  
  2049.  
  2050.  
  2051.  This will set the SEND packet length.  The value for  this  parameter
  2052.  
  2053.  must  be  between  10 and 1000.  Packet lengths outside of this range
  2054.  
  2055.  are illegal.  The default value is 80.
  2056.  
  2057.  
  2058.  
  2059.            Kermit-32>SET SEND PACKET_LENGTH n
  2060.  
  2061.  
  2062.  
  2063.  Where 'n' is the send packet length to use.
  2064.  
  2065. 3 PADCHAR
  2066.  
  2067.  
  2068.  
  2069.  This parameter is the padding character that is sent  to  the  remote
  2070.  
  2071.  Kermit.   The  parameter must be an octal number in the range of 0 to
  2072.  
  2073.  37 or 177.  The default value is 0 (ASCII NUL, CTRL-@).
  2074.  
  2075.  
  2076.  
  2077.            Kermit-32>SET SEND PADCHAR octal-char-value
  2078.  
  2079.  
  2080.  
  2081.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  2082.  
  2083.  character to be used as a pad character.
  2084.  
  2085. 3 PADDING
  2086.  
  2087.  
  2088.  
  2089.  This command will set the number of padding characters that  will  be
  2090.  
  2091.  sent to the other Kermit.  The default value is 0.
  2092.  
  2093.  
  2094.  
  2095.            Kermit-32>SET SEND PADDING n
  2096.  
  2097.  
  2098.  
  2099.  Where 'n' is the number of padding characters to use.
  2100.  
  2101. 3 QUOTE
  2102.  
  2103.  
  2104.  
  2105.  This will set the quoting character that  Kermit-32  will  expect  on
  2106.  
  2107.  incoming  messages.   This  is  the  character  used to quote control
  2108.  
  2109.  characters.  The parameter must be an octal number in the range 40 to
  2110.  
  2111.  176.  The default value is 43 octal (ASCII "#").
  2112.  
  2113.  
  2114.  
  2115.            Kermit-32>SET SEND QUOTE octal-char-value
  2116.  
  2117.  
  2118.  
  2119.  Where 'octal-char-value' is the ASCII value (in octal) of the quoting
  2120.  
  2121.  character.
  2122.  
  2123. 3 START_OF_PACKET
  2124.  
  2125.  
  2126.  
  2127.  This command will set the start of packet  character  for  Kermit-32.
  2128.  
  2129.  The  start of packet character must be in the range of 1 to 37 octal.
  2130.  
  2131.  The default value is 1 (ASCII SOH, CTRL-A).  This value  should  only
  2132.  
  2133.  be  changed if absolutely necessary.  It must be set the same in both
  2134.  
  2135.  Kermit programs.
  2136.  
  2137.  
  2138.  
  2139.            Kermit-32>SET SEND START_OF_PACKET octal-char-value
  2140.  
  2141.  
  2142.  
  2143.  Where 'octal-char-value'  is  the  ASCII  value  (in  octal)  of  the
  2144.  
  2145.  start-of-packet character to use.
  2146.  
  2147. 3 TIMEOUT
  2148.  
  2149.  
  2150.  
  2151.  This will set the number of seconds before Kermit-32 will time out  a
  2152.  
  2153.  message  it  has  sent to the other Kermit.  This time out is used to
  2154.  
  2155.  handle transmission errors which totally lose a message.  The default
  2156.  
  2157.  value is 15 seconds.
  2158.  
  2159.  
  2160.  
  2161.            Kermit-32>SET SEND TIMEOUT n
  2162.  
  2163.  
  2164.  
  2165.  Where 'n' is the number of seconds to wait for a message.
  2166.  
  2167. 2 SERVER_TIMER
  2168.  
  2169.  
  2170.  
  2171.  This specifies the number of seconds between timeouts  during  server
  2172.  
  2173.  command  wait.   A value of 0 specifies that no timeouts should occur
  2174.  
  2175.  during server command wait.  When a Kermit server times out, it sends
  2176.  
  2177.  a  NAK  packet.   Some  systems cannot clear piled-up NAKs from their
  2178.  
  2179.  input buffers; if you're using such a system to  communicate  with  a
  2180.  
  2181.  Kermit-32  server,  and  you expect to be leaving the server idle for
  2182.  
  2183.  long periods of time, you should use this command to turn off  server
  2184.  
  2185.  command-wait timeouts.
  2186.  
  2187.  
  2188.  
  2189.            Kermit-32>SET SERVER_TIMEOUT n
  2190.  
  2191.  
  2192.  
  2193.  Where 'n' is the number of seconds between server timeouts.
  2194.  
  2195. 2 TRANSMIT
  2196.  
  2197.  
  2198.  
  2199.  It is possible to set  a  few  parameters  associated  with  the  raw
  2200.  
  2201.  TRANSMIT  command  that vary both what the user sees on the screen as
  2202.  
  2203.  well as the speed of the transmit.
  2204.  
  2205. 3 DELAY
  2206.  
  2207.  
  2208.  
  2209.  This parameter is the amount of time to  delay  after  each  carriage
  2210.  
  2211.  return  is  transmitted.   Valid  delay  values  range between 0 (the
  2212.  
  2213.  default) and 9 tenths of a second.  The format of the command is:
  2214.  
  2215.  
  2216.  
  2217.            Kermit-32>SET TRANSMIT DELAY d
  2218.  
  2219.  
  2220.  
  2221.  Where 'd' is a single decimal digit representing tenths of a second.
  2222.  
  2223.  
  2224.  
  2225.  Some remote hosts may not be able to receive the characters  as  fast
  2226.  
  2227.  as  Kermit-32  can send them.  The TRANSMIT DELAY can be used to slow
  2228.  
  2229.  up the transfer by adding a slight delay after each line is sent.
  2230.  
  2231.  
  2232.  
  2233.  The transfer also runs slower if the transmit echo  is  on,  and  the
  2234.  
  2235.  remote  system is echoing the characters as it receives them.  If the
  2236.  
  2237.  transmit delay is set to 9 tenths of a second, the remote  system  is
  2238.  
  2239.  echoing  characters,  the  transmit echo is on, and the remote system
  2240.  
  2241.  still cannot keep up, then the connection should be made at a  slower
  2242.  
  2243.  baud rate.
  2244.  
  2245.  
  2246.  
  2247.  Conversely, the file transfer speed can be increased by:  setting the
  2248.  
  2249.  delay  to 0 and the echo off, stopping the remote system from echoing
  2250.  
  2251.  the characters it receives, and connecting at higher baud rates.
  2252.  
  2253. 3 ECHO
  2254.  
  2255.  
  2256.  
  2257.  This command controls what the user sees on  the  screen  during  the
  2258.  
  2259.  file transfer.  The format of the command is:
  2260.  
  2261.  
  2262.  
  2263.            Kermit-32>SET TRANSMIT ECHO state
  2264.  
  2265.  
  2266.  
  2267.  Where 'state' is either ON or OFF.
  2268.  
  2269.  
  2270.  
  2271.  By default, the transmit echo is left  off  and  the  user  sees  the
  2272.  
  2273.  number  of  each  line  after it has been transmitted.  With transmit
  2274.  
  2275.  echo on, the user sees whatever the remote system would normally echo
  2276.  
  2277.  back to him while he is typing in a file.  Note that turning the echo
  2278.  
  2279.  on typically slows the file transfer down.
  2280.  
  2281. 1 SHOW
  2282.  
  2283.  
  2284.  
  2285.  The SHOW command will allow you to show the various  parameters  that
  2286.  
  2287.  are set with the SET command.
  2288.  
  2289. 2 ALL
  2290.  
  2291.  
  2292.  
  2293.  The SHOW ALL command will cause all of the parameters to be listed.
  2294.  
  2295. 2 BLOCK_CHECK_TYPE
  2296.  
  2297.  
  2298.  
  2299.  This command will  type  out  what  type  of  block  check  is  being
  2300.  
  2301.  requested.
  2302.  
  2303. 2 COMMUNICATIONS
  2304.  
  2305.  
  2306.  
  2307.  This  command  will  type  out  the   communications   line   related
  2308.  
  2309.  parameters.   This  includes the terminal line being used, the parity
  2310.  
  2311.  type, etc.
  2312.  
  2313. 2 DEBUGGING
  2314.  
  2315.  
  2316.  
  2317.  The SHOW DEBUGGING command will print  the  state  of  the  debugging
  2318.  
  2319.  flag.
  2320.  
  2321. 2 DELAY
  2322.  
  2323.  
  2324.  
  2325.  This will display the number of seconds delay that Kermit-32 will use
  2326.  
  2327.  before attempting to send or receive a file.
  2328.  
  2329. 2 ESCAPE
  2330.  
  2331.  
  2332.  
  2333.  This will display  the  current  escape  character  for  the  CONNECT
  2334.  
  2335.  processing.
  2336.  
  2337. 2 FILE_PARAMETERS
  2338.  
  2339.  
  2340.  
  2341.  This will display the parameters related to files being  used.   This
  2342.  
  2343.  includes the file type and the incomplete file disposition.
  2344.  
  2345. 2 INCOMPLETE_FILE_DISPOSITION
  2346.  
  2347.  
  2348.  
  2349.  This will display the disposition of incompletely received files.
  2350.  
  2351. 2 LINE
  2352.  
  2353.  
  2354.  
  2355.  This command displays the terminal line that will be used for CONNECT
  2356.  
  2357.  and file transfers commands.
  2358.  
  2359. 2 LOCAL_ECHO
  2360.  
  2361.  
  2362.  
  2363.  This will display the status of the local echo flag.
  2364.  
  2365. 2 PACKET
  2366.  
  2367.  
  2368.  
  2369.  This will display the current settings of the send and receive packet
  2370.  
  2371.  parameters.
  2372.  
  2373. 2 PARITY
  2374.  
  2375.  
  2376.  
  2377.  This will display the current parity setting.
  2378.  
  2379. 2 RECEIVE
  2380.  
  2381.  
  2382.  
  2383.  The current values of the RECEIVE parameters will be displayed on the
  2384.  
  2385.  user's  terminal.   Only  the  parameters  that  can  be  set will be
  2386.  
  2387.  displayed.
  2388.  
  2389. 2 RETRY
  2390.  
  2391.  
  2392.  
  2393.  This command will show the maximum number of retries  that  Kermit-32
  2394.  
  2395.  will attempt to send a message to the remote Kermit.
  2396.  
  2397. 2 SEND
  2398.  
  2399.  
  2400.  
  2401.  All of the send parameters will be displayed on the user's terminal.
  2402.  
  2403. 2 TIMING
  2404.  
  2405.  
  2406.  
  2407.  All of  the  timing  parameters  will  be  displayed  on  the  user's
  2408.  
  2409.  terminal.
  2410.  
  2411. 2 TRANSMIT
  2412.  
  2413.  
  2414.  
  2415.  This will display the parameters related to the TRANSMIT command.
  2416.  
  2417. 2 VERSION
  2418.  
  2419.  
  2420.  
  2421.  Displays the version number of Kermit-32 in use.
  2422.  
  2423. 1 Startup
  2424.  
  2425. 2 KER$COMM
  2426.  
  2427.  
  2428.  
  2429.  When  Kermit-32  is  first  invoked  it  will  attempt  to  use   the
  2430.  
  2431.  translation of the logical name KER$COMM as the default terminal line
  2432.  
  2433.  for external communications.
  2434.  
  2435. 2 VMSKERMIT
  2436.  
  2437.  
  2438.  
  2439.  When Kermit-32 is first invoked it looks for a file specified by  the
  2440.  
  2441.  VMSKERMIT  logical  name assignment to use as an initialization file.
  2442.  
  2443.  If this file does not exist  Kermit-32  looks  for  a  file  in  your
  2444.  
  2445.  default directory with the name VMSKERMIT.INI.
  2446.  
  2447.  
  2448.  
  2449.  If either of the above cases is true Kermit-32 will use this file  as
  2450.  
  2451.  a startup command file.
  2452.  
  2453.  
  2454.  
  2455.  If the file does not exist Kermit-32 starts up in the default state.
  2456.  
  2457.  
  2458.  
  2459.  For instance, placing the following two lines  in  the  startup  file
  2460.  
  2461.  would simplify using Kermit-32's large packet capability.
  2462.  
  2463.  
  2464.  
  2465.  SET RECEIVE PACKET_LENGTH 1000
  2466.  
  2467.  SET SEND PACKET_LENGTH 1000
  2468.  
  2469. 1 STATUS
  2470.  
  2471.  
  2472.  
  2473.  The current status of Kermit-32 will be displayed.  This includes the
  2474.  
  2475.  number of characters that have been sent and received from the remote
  2476.  
  2477.  Kermit.  Also included is an estimate of the effective baud  rate  of
  2478.  
  2479.  the  transfer.   This number is not intended to be exact, but only an
  2480.  
  2481.  indication of what range of throughput has been provided.
  2482.  
  2483. 1 TAKE
  2484.  
  2485.  
  2486.  
  2487.  The TAKE  command  tells  Kermit-32  to  execute  commands  from  the
  2488.  
  2489.  specified file.  You may also use the VAX/VMS notation "@" instead of
  2490.  
  2491.  Take to specify a command file.
  2492.  
  2493.  
  2494.  
  2495.            Kermit-32>TAKE file-spec
  2496.  
  2497.       or
  2498.  
  2499.            Kermit-32>TAKE file-spec /DISPLAY
  2500.  
  2501.  
  2502.  
  2503.  Where 'file-spec' is  any  normal  VAX/VMS  file  specification.   If
  2504.  
  2505.  file-spec  does  not  specify  a  file-type  Kermit-32  will supply a
  2506.  
  2507.  default of .COM.  The /DISPLAY option causes the commands  read  from
  2508.  
  2509.  the file to be displayed on the user's terminal.
  2510.  
  2511. 1 TRANSMIT
  2512.  
  2513.  
  2514.  
  2515.  The TRANSMIT command will allow you to transmit a file(s)  to  remote
  2516.  
  2517.  systems  that  do  not  have Kermit available.  Note that there is no
  2518.  
  2519.  error checking or packets involved in this method of  file  transfer.
  2520.  
  2521.  The format of the command is:
  2522.  
  2523.  
  2524.  
  2525.            Kermit-32>TRANSMIT file-spec
  2526.  
  2527.  
  2528.  
  2529.  Where 'file-spec' is any valid VAX/VMS file specification.
  2530.  
  2531.  
  2532.  
  2533.  This command does a raw transmit of an ASCII file, one character at a
  2534.  
  2535.  time,  with carriage returns (no line-feeds) at the end of each line.
  2536.  
  2537.  It is used with Kermit-32 in local mode.  The user must first prepare
  2538.  
  2539.  the  remote  host  to receive the file by starting an edit session in
  2540.  
  2541.  input mode.  Then the user can escape back to Kermit-32 and issue the
  2542.  
  2543.  TRANSMIT  command.   After  the  transmit  is finished, the user then
  2544.  
  2545.  CONNECTs back to the remote host again and ends the edit session.
  2546.  
  2547. 2 Control_Characters
  2548.  
  2549.  
  2550.  
  2551.  During a file transmit, the following control characters can be  used
  2552.  
  2553.  to affect the transfer in progress:
  2554.  
  2555.  
  2556.  
  2557.            CTRL-C - Abort the transmit
  2558.  
  2559.            CTRL-X - Abort the file currently being transmitted
  2560.  
  2561.            CTRL-Z - Abort the file group currently being transmitted
  2562.  
  2563.  
  2564.  
  2565. 2 Delay
  2566.  
  2567.  
  2568.  
  2569.  Some remote hosts may not be able to receive the characters  as  fast
  2570.  
  2571.  as  Kermit-32  can  send them.  The SET TRANSMIT DELAY command can be
  2572.  
  2573.  used to slow up the transfer by adding a slight delay after each line
  2574.  
  2575.  is sent.
  2576.  
  2577.  
  2578.  
  2579.  The transfer also runs slower if the transmit echo  is  on,  and  the
  2580.  
  2581.  remote  system is echoing the characters as it receives them.  If the
  2582.  
  2583.  transmit delay is set to 9 tenths of a second, the remote  system  is
  2584.  
  2585.  echoing  characters,  the  transmit echo is on, and the remote system
  2586.  
  2587.  still cannot keep up, then the connection should be made at a  slower
  2588.  
  2589.  baud rate.
  2590.  
  2591.  
  2592.  
  2593.  Conversely, the file transfer speed can be increased by:  setting the
  2594.  
  2595.  delay  to 0 and the echo off, stopping the remote system from echoing
  2596.  
  2597.  the characters it receives, and connecting at higher baud rates.
  2598.  
  2599. 2 Echo
  2600.  
  2601.  
  2602.  
  2603.  The SET TRANSMIT ECHO command controls what  the  user  sees  on  the
  2604.  
  2605.  screen  during  the  file transfer.  With transmit echo off, the user
  2606.  
  2607.  sees the number of each line after it  has  been  transmitted.   With
  2608.  
  2609.  transmit  echo  on,  the  user  sees whatever the remote system would
  2610.  
  2611.  normally echo back to the user while he is typing in a file.
  2612.  
  2613.