home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pdp10 / k10mit.txt < prev    next >
Text File  |  2020-01-01  |  51KB  |  1,160 lines

  1.           Kermit is a file transfer program.  It allows  the  transfer
  2.           of files over terminal lines from a remote Kermit program to
  3.           the local Kermit program.
  4.  
  5.           Kermit-10 can be run in either local or  remote  modes.   In
  6.           remote  mode,  transfers  take  place  over  the controlling
  7.           terminal line.  Ususally, Kermit-10 is used in  remote  mode
  8.           as a "server", meaning that it will accept commands from the
  9.           other  Kermit.   In  local  mode,  Kermit-10  will   perform
  10.           transfers  over  a  terminal line other than the controlling
  11.           terminal.  In local mode, Kermit-10  is  capable  of  giving
  12.           commands  to a "server" Kermit.  Kermit-10 is put into local
  13.           mode by using the SET LINE command.
  14.  
  15.           Type  HELP  <command>  for  more  information  on  a   given
  16.           commands.  Additional information is avaiable for:
  17.  
  18.           BYE       CONNECT   EXIT      FINISH    GET       LOCAL 
  19.           LOG       LOGOUT    RECEIVE   REMOTE    SEND      SET 
  20.           SHOW      STATUS
  21.  
  22. *BYE
  23. BYE       This command will cause Kermit-10 (when in  local  mode)  to
  24.           tell  the  other  Kermit (which should be in server mode) to
  25.           exit from Kermit and, if applicable, terminate its  job  (or
  26.           process, etc.).  When Kermit-10 receives the acknowledgement
  27.           that this is being done, it will exit to TOPS-10.
  28.  
  29.                     Kermit-10>BYE
  30.  
  31.  
  32. *CONNECT
  33. CONNECT   The CONNECT command will  allow  you  to  connect  in  as  a
  34.           virtual terminal over the line that was specified by the SET
  35.           LINE command, or to  the  terminal  line  specified  in  the
  36.           command.  The format of the CONNECT command is:
  37.  
  38.                     Kermit-10>CONNECT
  39.  
  40.           or
  41.  
  42.                     Kermit-10>CONNECT device:
  43.  
  44.           where device: is the terminal name to be used.
  45.  
  46.           or
  47.  
  48.                     Kermit-10>CONNECT node:: line
  49.  
  50.           where node:: is the node number the terminal is  attach  to,
  51.           and line is the line number within that node.
  52.  
  53. *EXIT
  54. EXIT      The EXIT command will cause  Kermit  to  return  to  command
  55.           level.   This  command  is the same as the QUIT command.  An
  56.           example of this command is:
  57.  
  58.                     Kermit-10>EXIT
  59.  
  60. *FINISH
  61. FINISH    This command will cause Kermit-10 (when in  local  mode)  to
  62.           tell  the  other  Kermit (which should be in server mode) to
  63.           exit from Kermit.  After receiving the acknowledgement  that
  64.           this  is  being  done,  Kermit-10  will  prompt  for another
  65.           command.
  66.  
  67.                     Kermit-10>FINISH
  68.  
  69.  
  70. *GET
  71. GET       This command can only be used in local mode.  It will  cause
  72.           Kermit-10  to  request  that the other Kermit (which must be
  73.           running in server mode) to transmit the specifed file(s)  to
  74.           Kermit-10.
  75.  
  76.                     Kermit-10>GET file-specification
  77.  
  78.           Where "file-specification" is a valid file specification for
  79.           the system on which the other Kermit is running.
  80.  
  81. *LOCAL
  82. LOCAL     This set of commands performs actions like getting directory
  83.           listings,  deleting  files, etc., on the local system (i.e.,
  84.           the  system  Kermit-10  is  running  on).   These   commands
  85.           correspond  to  the  commands  which Kermit-10 implements in
  86.           server mode.
  87.  
  88.           Additional information is available for the  LOCAL  commands
  89.           by  typing  HELP  LOCAL <option>, where option is one of the
  90.           following:
  91.  
  92.           CWD            DELETE         DIRECTORY      DISK-USAGE
  93.           ERASE          HELP           SET-PATH       SPACE
  94.           STATUS         TYPE
  95.  
  96. *LOCAL CWD
  97. LOCAL CWD This command is used to change the current default path  for
  98.           the  job running Kermit.  The CWD stands for "change working
  99.           directory".  The command takes a path  specification  as  an
  100.           argument.   If no argument is given, the default path is set
  101.           to the path which was in  effect  when  Kermit-10  was  run.
  102.           This command is identical to the LOCAL SET-PATH command.
  103.  
  104.                     Kermit-10>LOCAL CWD
  105.  
  106.                     Kermit-10>LOCAL CWD path-specification
  107.  
  108.           Where  "path-specification"  is  any  valid   TOPS-10   path
  109.           specification.
  110.  
  111. *LOCAL DELETE
  112.  
  113. LOCAL DELETE             This command is used to delete a file or  set
  114.           of  files.   It  takes  a  single, possibly wildcarded, file
  115.           specification as an argument.  All  files  which  match  the
  116.           specification  are  deleted.   As the files are deleted, the
  117.           names and sizes are printed out.  This command is  the  same
  118.           as the LOCAL ERASE command.
  119.  
  120.                     Kermit-10>LOCAL DELETE file-specification
  121.  
  122.           Where  "file-specification"  is  any  valid   TOPS-10   file
  123.           specification.  Wildcards are allowed.
  124.  
  125. *LOCAL DIRECTORY
  126.  
  127. LOCAL DIRECTORY          This command will list all files which  match
  128.           the  wildcard  file  specification  which is supplied as its
  129.           argument.  If no argument is given, it will list  all  files
  130.           from  the  current  default path.  The file names, sizes (in
  131.           words and allocated blocks) and creation dates are listed.
  132.  
  133.                     Kermit-10>LOCAL DIRECTORY file-specification
  134.  
  135.           Where  "file-specification"  is  any  valid   TOPS-10   file
  136.           specification  (wildcards allowed).  If "file-specification"
  137.           is left out, Kermit-10 uses "*.*".
  138.  
  139. *LOCAL DISK-USAGE
  140.  
  141. LOCAL DISK-USAGE         This command reports the amount of disk space
  142.           in use and available.  It takes optional arguments of either
  143.           a structure name,  a  PPN,  or  both.   If  no  argument  is
  144.           supplied,  the disk usage and quota information is displayed
  145.           for the user's PPN on all structures  currently  mounted  by
  146.           the  job  running Kermit-10.  If only a PPN is supplied, the
  147.           quota and disk usage information is displayed for  that  PPN
  148.           on  all  structures  currently mounted.  If only a structure
  149.           name is given, the  disk  usage  and  quota  information  is
  150.           listed  for the user's PPN on that structure.  If both a PPN
  151.           and structure name are given, Kermit-10 displays  the  quota
  152.           and  disk  usage  information  for  that  PPN  on  the given
  153.           structure.  The information  provided  is  similar  to  that
  154.           provided  by  QUOLST.  This command is the same as the LOCAL
  155.           SPACE command.
  156.  
  157.                     Kermit-10>LOCAL DISK-USAGE structure:ppn
  158.  
  159.           Where "structure" is a valid structure name (or null for all
  160.           structures  in  the  jobs search list), and "ppn" is a valid
  161.           project-programmer number (enclosed in square  brackets)  or
  162.           null to use the user's PPN.
  163.  
  164. *LOCAL ERASE
  165.  
  166. LOCAL ERASE              This command is used to delete a file or  set
  167.           of  files.   It  takes  a  single, possibly wildcarded, file
  168.           specification as an argument.  All  files  which  match  the
  169.           specification  are  deleted.   As the files are deleted, the
  170.           names and sizes are printed out.  This command is  the  same
  171.           as the LOCAL DELETE command.
  172.  
  173.                     Kermit-10>LOCAL ERASE file-specification
  174.  
  175.           Where  "file-specification"  is  any  valid   TOPS-10   file
  176.           specification.  Wildcards are allowed.
  177.  
  178. *LOCAL HELP
  179.  
  180. LOCAL HELP               This command will display  the  help  message
  181.           which  is  returned  when  Kermit-10 receives a generic help
  182.           request in server mode.  It describes  the  functions  which
  183.           are implemented in server mode by Kermit-10.
  184.  
  185.                     Kermit-10>LOCAL HELP
  186.  
  187. *LOCAL SET-PATH
  188. LOCAL SET-PATH           This command is used to  change  the  current
  189.           default  path for the job running Kermit.  The command takes
  190.           a path specification as an  argument.   If  no  argument  is
  191.           given,  the  default  path  is  set to the path which was in
  192.           effect when Kermit-10 was run.  This command is identical to
  193.           the LOCAL CWD command.
  194.  
  195.                     Kermit-10>LOCAL SET-PATH
  196.  
  197.                     Kermit-10>LOCAL SET-PATH path-specification
  198.  
  199.           Where  "path-specification"  is  any  valid   TOPS-10   path
  200.           specification.
  201.  
  202. *LOCAL SPACE
  203.  
  204. LOCAL SPACE              This command reports the amount of disk space
  205.           in use and available.  It takes optional arguments of either
  206.           a structure name,  a  PPN,  or  both.   If  no  argument  is
  207.           supplied,  the disk usage and quota information is displayed
  208.           for the user's PPN on all structures  currently  mounted  by
  209.           the  job  running Kermit-10.  If only a PPN is supplied, the
  210.           quota and disk usage information is displayed for  that  PPN
  211.           on  all  structures  currently mounted.  If only a structure
  212.           name is given, the  disk  usage  and  quota  information  is
  213.           listed  for the user's PPN on that structure.  If both a PPN
  214.           and structure name are given, Kermit-10 displays  the  quota
  215.           and  disk  usage  information  for  that  PPN  on  the given
  216.           structure.  The information  provided  is  similar  to  that
  217.           provided  by  QUOLST.  This command is the same as the LOCAL
  218.           DISK-USAGE command.
  219.  
  220.                     Kermit-10>LOCAL SPACE structure:ppn
  221.  
  222.           Where "structure" is a valid structure name (or null for all
  223.           structures  in  the  jobs search list), and "ppn" is a valid
  224.           project-programmer number (enclosed in square  brackets)  or
  225.           null to use the user's PPN.
  226.  
  227. *LOCAL STATUS
  228.  
  229. LOCAL STATUS             This  command  will  type  out   the   status
  230.           information  since  Kermit-10 was started.  This is the same
  231.           as the totals information that  is  printed  by  the  STATUS
  232.           command.
  233.  
  234.                     Kermit-10>LOCAL STATUS
  235.  
  236. *LOCAL TYPE
  237.  
  238. LOCAL TYPE               This command will type a file or files on the
  239.           user's  terminal.   It  takes a file specification (possibly
  240.           wildcarded) as an argument.  This file  is  read  using  the
  241.           current  BYTE-SIZE,  so  it is possible to type a file which
  242.           was stored using BYTE-SIZE EIGHT.
  243.  
  244.                     Kermit-10>LOCAL TYPE file-specification
  245.  
  246.           Where  "file-specification"  is  any  valid   TOPS-10   file
  247.           specification.  Wildcards are permitted.
  248.  
  249. *LOG
  250. LOG       This set of commands is used to specify the names of various
  251.           types  of log files.  Each command either specifies the name
  252.           of the given type of log file, or clears the name.  For more
  253.           information type HELP LOG <option>, where option is one of:
  254.  
  255.           DEBUG          SESSION
  256.  
  257. *LOG DEBUG
  258. LOG DEBUG This command sets the name of the debugging log file  to  be
  259.           used  during transfers.  This log file is used for debugging
  260.           output when the SET DEBUG ON command is used.  A new file by
  261.           the given name will be created, unless the /APPEND switch is
  262.           used.  After the file has been created, subsequent transfers
  263.           will  append  to the file.  Note that the SET DEBUG LOG-FILE
  264.           file-name   command   is    equivalent    to    LOG    DEBUG
  265.           file-name/APPEND followed by a SET DEBUG ON command.
  266.  
  267.                     Kermit-10>LOG DEBUG file-specification
  268.  
  269.           or
  270.  
  271.                     Kermit-10>LOG DEBUG file-specification/APPEND
  272.  
  273.           Where  "file-specification"  is   a   valid   TOPS-10   file
  274.           specification.
  275.  
  276. *LOG SESSION
  277. LOG SESSION              This command sets the name of the log file to
  278.           be used during "CONNECT" sessions.  This file is used to log
  279.           all characters which are output to the user's terminal  when
  280.           the  CONNECT  command  is  being  used  to  perform terminal
  281.           emulation.  A new file by the given name  will  be  created,
  282.           unless  the  /APPEND  switch is used.  In any case, once the
  283.           file has been created, subsequent CONNECTs  will  append  to
  284.           the file.
  285.  
  286.                     Kermit-10>LOG SESSION file-specification
  287.  
  288.           or
  289.  
  290.                     Kermit-10>LOG SESSION file-specification/APPEND
  291.  
  292.           Where  "file-specification"  is   a   valid   TOPS-10   file
  293.           specification.
  294.  
  295. *LOGOUT
  296. LOGOUT    This command will cause Kermit-10 (when in  local  mode)  to
  297.           tell  the  other  Kermit (which should be in server mode) to
  298.           exit from Kermit and, if applicable, terminate its  job  (or
  299.           process, etc.).  When Kermit-10 receives the acknowledgement
  300.           that this is being done, it will prompt for another command.
  301.  
  302.                     Kermit-10>LOGOUT
  303.  
  304.  
  305. *QUIT
  306. QUIT      This command will cause Kermit to return to  command  level.
  307.           This is the same as the EXIT command.
  308.  
  309.                     Kermit-10>QUIT
  310.  
  311. *RECEIVE
  312. RECEIVE   The RECEIVE command is used to  put  Kermit-10  into  remote
  313.           mode  waiting for a single file transfer transaction.  If no
  314.           file specification is given, Kermit-10 will wait for a  file
  315.           transfer  initialization sequence from the other Kermit.  If
  316.           a file specification is given, that file specification  will
  317.           be  used  to  store the received file(s), regardless of what
  318.           name is supplied by the other Kermit.
  319.  
  320.           The format of the command is:
  321.  
  322.                     Kermit-10>RECEIVE
  323.  
  324.           or
  325.  
  326.                     Kermit-10>RECEIVE file-specification
  327.  
  328.           Where  "file-specification"  is  any  valid   TOPS-10   file
  329.           specification.
  330.  
  331. *REMOTE
  332. REMOTE    This command allows the user of Kermit-10 (in local mode) to
  333.           give  various commands to the other Kermit (which must be in
  334.           server  mode).   These  commands  provide  for  listing  the
  335.           contents  of  a  directory,  deleting  files,  typing files,
  336.           displaying the amount of disk space used,  etc.   Note  that
  337.           not  all server Kermits support all commands, but all server
  338.           Kermits should repsond with a message saying the command  is
  339.           not implemented if it does not support it.
  340.  
  341.                     Kermit-10>REMOTE keyword arguments
  342.  
  343.           Where keyword is the name of the command, and arguments  are
  344.           the optional arguments for the command.
  345.  
  346.           For more information on the individual commands, type  "HELP
  347.           REMOTE option", where "option" is one of:
  348.  
  349.           COPY           CWD            DELETE         DIRECTORY
  350.           DISK-USAGE     ERASE          EXIT           HELP
  351.           HOST           LOGIN          LOGOUT         RENAME
  352.           SEND           SPACE          STATUS         TYPE
  353.           WHO
  354.  
  355. *REMOTE COPY
  356. REMOTE COPY              This causes Kermit-10  to  request  that  the
  357.           server  Kermit  make a copy of the specified file.  Both the
  358.           old and new files are files on the server's system - no file
  359.           transfer  between systems is done.  The server Kermit should
  360.           respond with  some  indication  that  either  the  file  was
  361.           successfully  copied,  or  with an error message.  Note that
  362.           some Kermit's will allow wild-carded  copies,  while  others
  363.           will only allow a single file to be copied per command.
  364.  
  365.                     Kermit-10>REMOTE COPY old-remote-file
  366.                     New file:  new-remote-file
  367.  
  368.           Where 'old-remote-file' is the name of the file you wish  to
  369.           copy, and 'new-remote-file' is the name for the copy.
  370.  
  371. *REMOTE CWD
  372. REMOTE CWD               This  command  (short  for  "Change   Working
  373.           Directory")  causes  Kermit-10  to  request  that the server
  374.           Kermit change the default  directory  (path,  device,  etc.)
  375.           that  will  be  used  for files whose specification does not
  376.           include the  directory  information.   For  some  systems  a
  377.           password  can be supplied which will allow access to the new
  378.           directory.  Since Kermit-10 can not know whether the  server
  379.           Kermit  requires a password, it will always ask for one.  If
  380.           no directory is specified in the command, the server  Kermit
  381.           will  set  the  default directory back to the users default.
  382.           This may be either the directory which is the default when a
  383.           job  created,  or  the default directory which was in effect
  384.           when the server  Kermit  was  started.   The  server  Kermit
  385.           should  respond with a message which indicates where the new
  386.           default directory has been set, or with an error message.
  387.  
  388.                     Kermit-10>REMOTE                               CWD
  389.           remote-directory-specification
  390.                     Password:  password for remote directory
  391.  
  392.           or
  393.  
  394.                     Kermit-10>REMOTE CWD
  395.  
  396.           Where 'remote-directory-specification' is a string which  is
  397.           acceptable  as a directory indication for the server system.
  398.           The password is any string which is required as  a  password
  399.           for access to the given directory.  The password will not be
  400.           echoed.
  401.  
  402. *REMOTE DELETE
  403. REMOTE DELETE            This causes Kermit-10 to request  the  server
  404.           Kermit  to delete the specified file (or files if the server
  405.           Kermit  supports  wild-card  deletes).   The  server  Kermit
  406.           should  respond  with  a message indicating whether the file
  407.           (or files) has been deleted.  This is the same as the REMOTE
  408.           ERASE command.
  409.  
  410.                     Kermit-10>REMOTE DELETE file-specification
  411.  
  412.           Where file-specification is a valid file  specification  for
  413.           the server Kermit's system.
  414.  
  415. *REMOTE DIRECTORY
  416. REMOTE DIRECTORY         This causes Kermit-10 to request a  directory
  417.           listing  from the server Kermit.  The directory listing will
  418.           be printed on the users terminal.  The format of the listing
  419.           is determined by the server Kermit.
  420.  
  421.                     Kermit-10>REMOTE DIRECTORY file-specification
  422.  
  423.           Where the  file-specification  is  an  optional  valid  file
  424.           specification for the server Kermit's system.
  425.  
  426. *REMOTE DISK-USAGE
  427. REMOTE DISK-USAGE        This causes Kermit-10 to request  the  server
  428.           Kermit  to  reply  with  an indication of the amount of disk
  429.           space used and available for the  given  directory  (or  the
  430.           default  directory  if  none is given).  This is the same as
  431.           the REMOTE SPACE command.
  432.  
  433.                     Kermit-10>REMOTE                        DISK-USAGE
  434.           directory-specification
  435.  
  436.           Where  directory-specification  is  an  optional   directory
  437.           specification for the server Kermit's system.
  438.  
  439. *REMOTE EXIT
  440. REMOTE EXIT              This  command  is  identical  to  the  FINISH
  441.           command.   It  requests  the  server  Kermit  to exit to its
  442.           system command parser, allowing the terminal to be used  for
  443.           normal commands.
  444.  
  445.                     Kermit-10>REMOTE EXIT
  446.  
  447.  
  448. *REMOTE HELP
  449. REMOTE HELP              This causes Kermit-10 to request  the  server
  450.           Kermit  to  reply  with  a  sort summary of what commands it
  451.           supports in server mode.  If an argument is given,  help  on
  452.           the specific topic is requested.  The resulting help message
  453.           will be typed on the users terminal.
  454.  
  455.                     Kermit-10>REMOTE HELP topic
  456.  
  457.           or
  458.  
  459.                     Kermit-10>REMOTE HELP
  460.  
  461.           Where topic is an option subject for more detailed help.  If
  462.           no topic is given, a general help message is requested.
  463.  
  464. *REMOTE HOST
  465. REMOTE HOST              This command requests the  server  Kermit  to
  466.           perform  the  specified  command  as if it were typed by the
  467.           user on a terminal.  Any results  of  the  command  will  be
  468.           printed  on the user's terminal.  Note that this should only
  469.           be used for commands which will not require  any  more  user
  470.           input,  since  there will be no way for the user to interact
  471.           with the remote system to supply more input.
  472.  
  473.                     Kermit-10>REMOTE HOST command
  474.  
  475.           Where 'command' is any valid command to be processed by  the
  476.           remote systems standard command parser.
  477.  
  478. *REMOTE LOGIN
  479. REMOTE LOGIN             This command allows the user  to  supply  the
  480.           server  Kermit  with  accounting  information.   The  server
  481.           Kermit may use this to validate  the  users  access  to  the
  482.           system  as  well  as  for billing purposes.  It may also use
  483.           this information to provide the user with access to files on
  484.           its system.
  485.  
  486.                     Kermit-10>REMOTE LOGIN user-id
  487.                     Account:  remote-accounting-info
  488.                     Password:  remote-password
  489.  
  490.           Where 'user-id' is a string which represents  a  valid  user
  491.           identification       on       the       remote       system,
  492.           'remote-accounting-info'  is   any   additional   accounting
  493.           information  required  by the remote system (such as account
  494.           strings), and 'remote-password'  is  the  password  for  the
  495.           remote  system  which corresponds to the given user-id.  The
  496.           password will not be echoed.
  497.  
  498. *REMOTE LOGOUT
  499. REMOTE LOGOUT            This  command  is  the  same  as  the  LOGOUT
  500.           command.   It  will  request  the  server Kermit to exit and
  501.           logout its job.
  502.  
  503.                     Kermit-10>REMOTE LOGOUT
  504.  
  505.  
  506. *REMOTE RENAME
  507. REMOTE RENAME            This command causes Kermit-10 to request that
  508.           the  server  Kermit  change  the name on a file.  The server
  509.           Kermit should respond with an indication that the  operation
  510.           is  completed  successfully,  or else with an error message.
  511.           Some Kermit's may allow wild-card file specifications to  be
  512.           used, and will repsond with a list of files and new names.
  513.  
  514.                     Kermit-10>REMOTE RENAME old-remote-file
  515.                     New file:  New-remote-file
  516.  
  517.           Where 'old-remote-file' is  the  name  of  the  file  to  be
  518.           renamed, and 'new-remote-file' is the new name for the file.
  519.  
  520. *REMOTE SEND-MESSAGE
  521. REMOTE SEND-MESSAGE      This command requests the  server  Kermit  to
  522.           send  a  short  (one line) message to the given destination.
  523.           Depending on the system, the destination may be a  terminal,
  524.           a  user  name,  a  mailbox  name  or  some other destination
  525.           address.   The  server  Kermit  should   respond   with   an
  526.           indication of success or failure.
  527.  
  528.                     Kermit-10>REMOTE SEND-MESSAGE destination-address
  529.                     Message:  message-text
  530.  
  531.           Where 'destination-address' is a valid destination  for  the
  532.           server's  system,  and  'message-text'  is the message to be
  533.           sent.
  534.  
  535. *REMOTE STATUS
  536. REMOTE STATUS            This  requests  the  status  of  the   server
  537.           Kermit.   The  server Kermit will reply with some indication
  538.           of its status.
  539.  
  540.                     Kermit-10>REMOTE STATUS
  541.  
  542.  
  543. *REMOTE TYPE
  544. REMOTE TYPE              This causes Kermit-10 to request  the  server
  545.           Kermit  to  transmit  the  specified  file  (or files if the
  546.           server supports wildcards) so that the file(s) can be  typed
  547.           on the users terminal.
  548.  
  549.                     Kermit-10>REMOTE TYPE file-specification
  550.  
  551.           Where file-specification is a valid file  specification  for
  552.           the server Kermit's system.
  553.  
  554. *REMOTE WHO
  555. REMOTE WHO               This requests the server Kermit to display  a
  556.           list  of  users  of its system, along with other information
  557.           about the users and/or system.  A specific  user-id  may  be
  558.           supplied,  which  may  result  in  more detailed information
  559.           about the particular user.  It is also  possible  to  supply
  560.           options  for  use  by  the  server Kermit in determining the
  561.           format, etc., of the resulting list.
  562.  
  563.                     Kermit-10>REMOTE WHO user-id
  564.                     Options:  options-list
  565.  
  566.           Where  'user-id'  is  an  optional  string  representing   a
  567.           specific  user,  and  'options-list'  is an optional list of
  568.           formatting or selection options.
  569.  
  570. *SEND
  571. SEND      The SEND command will allow you to send  a  file(s)  to  the
  572.           other  Kermit.   If Kermit-10 is running in remote mode, the
  573.           file will be sent on the  controlling  terminal  line  after
  574.           waiting  the  number  of  seconds specified by the SET DELAY
  575.           command.  This gives the user time to  escape  back  to  the
  576.           other  Kermit  and issue a receive command.  If Kermit-10 is
  577.           running in local mode, the file will be sent immediately  on
  578.           the terminal line specified by the SET LINE command.
  579.  
  580.           The command format is:
  581.  
  582.                     Kermit-10>SEND file-specification
  583.  
  584.           Where  "file-specification"  is  any  normal  TOPS-10   file
  585.           specification.    Any  portion  of  the  file  specification
  586.           (except the device) may be wildcarded.  Note that the single
  587.           wild-card  character  is  indicated  by  a  % instead of the
  588.           usualy ?, since ? is used to obtain help.
  589.  
  590. *SERVER
  591. SERVER    This command will cause Kermit-10 to enter server mode.  The
  592.           other  Kermit  can  then  issue  server commands to send and
  593.           receive  files  without  having  to  give  SEND  or  RECEIVE
  594.           commands  to  Kermit-10.   Kermit-10  may be put into SERVER
  595.           mode while running as either a remote  Kermit  (transmitting
  596.           over  the  controlling  terminal line), or as a local Kermit
  597.           (transmitting over  a  terminal  specified  by  a  SET  LINE
  598.           command).   Note  that  in order to correctly receive binary
  599.           files while in SERVER mode, a SET FILE  BYTE-SIZE  EIGHT-BIT
  600.           must  be  done  first.   At  this  time  there is no way for
  601.           Kermit-10 to determine whether an incoming file is ASCII  or
  602.           binary.   Kermit-10  does make an attempt to guess whether a
  603.           file being sent is ASCII or binary if a SET  FILE  BYTE-SIZE
  604.           AUTO-BYTE  command  is  done,  however,  this  tends  to  be
  605.           unreliable as it is based on the  mode  used  to  write  the
  606.           file.
  607.  
  608.           The format of the command is:
  609.  
  610.                     Kermit-10>SERVER
  611.  
  612.  
  613. *SET
  614. SET       The SET command is used to set various parameters in Kermit.
  615.           Additional  information  is available for the SET command by
  616.           typing HELP  SET  <option>,  where  option  is  one  of  the
  617.           following:
  618.  
  619.           BLOCK-CHECK-TYPE              DEBUGGING      DELAY
  620.           ESCAPE         FILE           IBM            INCOMPLETE-FILE
  621.           HANDSHAKE      LINE           LOCAL-ECHO     MESSAGE
  622.           PARITY         RECEIVE        REPEAT         RETRY
  623.           SEND           XON-XOFF-PROESSING
  624.  
  625. *SET BLOCK-CHECK-TYPE
  626. SET BLOCK-CHECK-TYPE     The SET BLOCK-CHECK-TYPE command is  used  to
  627.           determine  the  type  of  block check sequence which will be
  628.           used during transmission.  The block check sequence is  used
  629.           to  detect  transmission  errors.   There are three types of
  630.           block check  available.   These  are  the  single  character
  631.           checksum  (default),  the  two  character  checksum, and the
  632.           three character CRC (cyclic redundancy check).  This command
  633.           does not ensure that the desired type of block check will be
  634.           used, since both Kermit's  involved  in  the  transfer  must
  635.           agree  on the block check type.  Kermit-10 will request that
  636.           the type of block check set by this command be  used  for  a
  637.           transfer.   If  the other Kermit has also had the same block
  638.           check type requested, then the desired block check type will
  639.           be  used.   Otherwise, the single character checksum will be
  640.           used.  (See Kermit protocol manual for more information.)
  641.  
  642.                     Kermit-10>SET BLOCK-CHECK-TYPE keyword
  643.  
  644.           Where keyword is one of:
  645.  
  646.           1.  1-CHARACTER-CHECKSUM or ONE-CHARACTER-CHECKSUM
  647.  
  648.           2.  2-CHARACTER-CHECKSUM or TWO-CHARACTER-CHECKSUM
  649.  
  650.           3.  3-CHARACTER-CRC-CCITT or THREE-CHARACTER-CRC-CCITT
  651.  
  652.  
  653. *SET DEBUGGING
  654. SET DEBUGGING            The SET DEBUGGING command is used to set  the
  655.           debug  type  out on the user's terminal.  Kermit-10 can only
  656.           do debugging type out when running as a  local  Kermit  (SET
  657.           LINE  command done).  This is because the debugging type out
  658.           would interfere with the file transfer if it  were  sent  to
  659.           the controlling terminal line in remote mode.  The debugging
  660.           log file may be used to redirect the debugging output  to  a
  661.           file.   This  may  be  used with Kermit-10 running in either
  662.           remote or local modes.
  663.  
  664.                     Kermit-10>SET DEBUGGING keyword
  665.  
  666.           Where keyword is either ON, OFF,  NO-LOG-FILE,  or  LOG-FILE
  667.           file-specification.    Doing   a   SET   DEBUGGING  LOG-FILE
  668.           file-spec causes Kermit-10 to turn debugging on  and  append
  669.           all  debugging  output  to  the file specified.  If the file
  670.           does  not  exist  it  will  be   created.    SET   DEBUGGING
  671.           NO-LOG-FILE will close the log file and turn debugging off.
  672.  
  673. *SET DELAY
  674. SET DELAY The DELAY parameter is the number of seconds to wait  before
  675.           sending  data  after  a SEND command is given.  This is used
  676.           when Kermit-10 is running in remote mode to allow  the  user
  677.           time  to  escape back to the other Kermit and give a RECEIVE
  678.           command.
  679.  
  680.                     Kermit-10>SET DELAY number-of-seconds
  681.  
  682.           Where number of seconds is the (decimal) number of second to
  683.           wait before sending data.
  684.  
  685. *SET ESCAPE
  686. SET ESCAPE               This command will set  the  escape  character
  687.           for the CONNECT processing.  The command will take the octal
  688.           value of the character to use as the escape character.  This
  689.           is the character which is used to "escape" back to Kermit-10
  690.           after using the CONNECT command.  It defaults to  ^Y  (octal
  691.           31).   It  is  usually  a good idea to set this character to
  692.           something which is not used (or at least not used very much)
  693.           on the system being to which Kermit-10 is CONNECTing.
  694.  
  695.                     Kermit-10>SET ESCAPE octal-character-value
  696.  
  697.           Where  octal-character-value  is  the  ASCII  value  of  the
  698.           character to use as the escape character (in octal).
  699.  
  700. *SET FILE
  701. SET FILE  This  command  allows  the  setting  of  various  parameters
  702.           dealing  with  file  formats  and  file  names.   Additional
  703.           information is available for the SET FILE command by  typing
  704.           HELP   SET  FILE  <option>,  where  option  is  one  of  the
  705.           following:
  706.  
  707.           BYTE-SIZE      NAMING         WARNING
  708.  
  709. *SET FILE BYTE-SIZE
  710. SET FILE BYTE-SIZE       This command sets  the  byte  size  Kermit-10
  711.           will use for files being received or transmitted.  SEVEN-BIT
  712.           bytes should be used for ASCII text files which  are  to  be
  713.           used  as text files on the TOPS-10 system.  SEVEN-BIT should
  714.           also be used to  sending  TOPS-10  format  binary  files  to
  715.           another  system  if  the file is intended to be brought to a
  716.           TOPS-10 system.  EIGHT-BIT bytes should be used  for  binary
  717.           files from other systems (such as CP/M .COM files) which are
  718.           being transferred to the TOPS-10 system for  storage.   This
  719.           allows   the  file  to  be  returned  without  any  changes.
  720.           AUTO-BYTE is the same as SEVEN-BIT for files being  received
  721.           from  the  other  Kermit.   When  sending  a  file with FILE
  722.           BYTE-SIZE AUTO-BYTE, Kermit-10 will guess whether  the  file
  723.           should  be  sent  as  SEVEN-BIT or EIGHT-BIT.  This guess is
  724.           based on the mode used to write the file.  If the  file  was
  725.           written  in  image  mode, image binary mode, binary mode, or
  726.           dump record mode, the file will  be  sent  as  an  EIGHT-BIT
  727.           file,  otherwise  it will be sent as a SEVEN-BIT file.  Note
  728.           that version 1 of Kermit-10 wrote all files it  received  in
  729.           binary mode, even if FILE BYTE-SIZE SEVEN-BIT was set.  This
  730.           means that AUTO-BYTE will not correctly determine  the  byte
  731.           size  to  use  for  files which were written with Kermit-10.
  732.           This is also true of files written  by  a  number  of  other
  733.           programs  under  TOPS-10, most notably any file written by a
  734.           Galaxy component (such as batch .LOG files) are  written  in
  735.           binary mode.  AUTO-BYTE is the default FILE BYTE-SIZE.
  736.  
  737.                     Kermit-10>SET FILE BYTE-SIZE type
  738.  
  739.           Where type is SEVEN-BIT, EIGHT-BIT or AUTO-BYTE.
  740.  
  741. *SET FILE NAMING
  742. SET FILE NAMING           This command sets  the  type  of  processing
  743.           Kermit  should  do  on  file  names  that are being sent and
  744.           received.   Kermit  can  either  send  the   complete   file
  745.           specification (including device, directories, file name, and
  746.           file extension or only the file name  and  extension.   When
  747.           receiving a file specification, Kermit can either attempt to
  748.           use it as a TOPS-10  file  specification  as  is,  or  first
  749.           perform some substitutions and truncations in order to force
  750.           the received specification to be just a valid file name  and
  751.           extension.
  752.  
  753.                     Kermit-10>SET FILE NAMING keyword
  754.  
  755.           Where keyword is FULL, NORMAL-FORM, or  UNTRANSLATED.   FULL
  756.           will  cause  Kermit  to send the complete file specification
  757.           for a file, and perform no substitutions  on  received  file
  758.           names.   NORMAL-FORM will cause Kermit to send only the file
  759.           name   and   extension    with    "X"s    substituted    for
  760.           non-alphanumeric   characters,   and  substitute  "X"'s  for
  761.           non-alphanumeric characters in received file  specifications
  762.           to  force  them  to  be  only  a  file  name  an  extension.
  763.           UNTRANSLATED will cause Kermit to send only  the  file  name
  764.           and   extension   (with  no  substitution)  and  perform  no
  765.           substitutions on received file names.
  766.  
  767. *SET FILE WARNING
  768. SET FILE WARNING         This command determines what  Kermit-10  will
  769.           do  when  it  receives  a file with a file name that already
  770.           exists.  If FILE WARNING is turned ON,  Kermit-10  will  not
  771.           supersede  the old file.  Instead it will create a file with
  772.           the same file name and the first extension of the form  .nnn
  773.           (where  n  is  an  octal  digit) such that the file will not
  774.           supersede any existing file.  If FILE WARNING is turned  OFF
  775.           (the default), Kermit-10 will supersede the old file.
  776.  
  777.                     Kermit-10>SET FILE WARNING keyword
  778.  
  779.           Where keyword is either ON or OFF.
  780.  
  781. *SET HANDSHAKE
  782. SET HANDSHAKE              This command allows the user to set  up
  783.       the IBM handshaking character to whatever character is
  784.       prefered
  785.  
  786.             Kermit-10>SET HANDSHAKE n
  787.  
  788.       Where n is a decimal number between 0 and 127
  789.  
  790. *SET IBM
  791. SET IBM                       The SET IBM command allows Kermit-10  to
  792.           be  put  into  a  mode  which will allow transfers to an IBM
  793.           host.  This causes Kermit-10 to wait for the IBM  turnaround
  794.           character (XON, CTRL-Q) before sending any characters to the
  795.           other Kermit.  It also forces the parity type  to  be  mark,
  796.           turns on local echo, and sets the handshake character to ctrl-q
  797.       for the CONNECT command.
  798.  
  799.                     Kermit-10>SET IBM
  800.  
  801.  
  802. *SET INCOMPLETE-FILE
  803. SET INCOMPLETE-FILE      The SET INCOMPLETE-FILE  command  allows  the
  804.           user  to  determine  what  is  done  with a file that is not
  805.           completely received.  If the disposition is KEEP,  all  file
  806.           received will be kept, even if only a portion of the file is
  807.           received.  If the  disposition  is  DISCARD  (the  default),
  808.           files which are not completely received are discarded.
  809.  
  810.                     Kermit-10>SET INCOMPLETE-FILE keyword
  811.  
  812.           Where keyword is either DISCARD or KEEP.
  813.  
  814. *SET LINE
  815. SET LINE  This will set the terminal line that Kermit-10 will use  for
  816.           file transfers and the CONNECT command.
  817.  
  818.                     Kermit-10>SET LINE device:
  819.  
  820.           Where device: is a terminal name.
  821.  
  822.           or
  823.  
  824.                     Kermit-10>SET LINE node:: line
  825.  
  826.           Where node:: is the node name  the  terminal  is  physically
  827.           connected  to,  and line number is the terminals line number
  828.           within that node.
  829.  
  830. *SET LOCAL-ECHO          
  831. SET LOCAL-ECHO           The SET LOCAL-ECHO command specifies  whether
  832.           characters  should  be  echoed  locally  when  CONNECTing to
  833.           another system.  If LOCAL-ECHO is set to ON,  any  character
  834.           typed  on  the  terminal  will  be echoed immediately to the
  835.           terminal, as well as being sent to  the  other  system.   If
  836.           LOCAL-ECHO is set to OFF (the default), the characters typed
  837.           on the terminal are only sent to  the  other  system  (which
  838.           would normally be echoing the characters).
  839.  
  840.                     Kermit-10>SET LOCAL-ECHO keyword
  841.  
  842.           Where keyword is either ON or OFF.
  843.  
  844. *SET MESSAGE
  845. SET MESSAGE              This  command  sets  the  type   of   typeout
  846.           Kermit-10 will do during transfers in local mode.  Kermit-10
  847.           can type out the file specification being  transferred,  the
  848.           packet numbers being sent an received, both or neither.  The
  849.           default is  to  type  file  specifications  but  not  packet
  850.           numbers.
  851.  
  852.                     Kermit-10>SET MESSAGE type
  853.  
  854.           or
  855.  
  856.                     Kermit-10>SET MESSAGE NO type
  857.  
  858.           Where type is either FILE or PACKET.
  859.  
  860. *SET PARITY
  861. SET PARITY               This command determines the type of parity to
  862.           use   on   the  transmission  line.   Kermit  normally  uses
  863.           characters which consist of eight data bits with  no  parity
  864.           bit.   For  systems  or  transmission  media which require a
  865.           specific parity type, Kermit can send  characters  as  seven
  866.           data bits plus a parity bit.
  867.  
  868.                     Kermit-10>SET PARITY keyword
  869.  
  870.           Where keyword is one of:
  871.  
  872.           1.  NONE (default) - eight data bits and no parity bit.
  873.  
  874.           2.  MARK - seven data bits with the parity bit set to one.
  875.  
  876.           3.  SPACE - seven data bits with the parity bit set to zero.
  877.  
  878.           4.  EVEN - seven data bits with the parity bit set  to  make
  879.               the overall parity even.
  880.  
  881.           5.  ODD - seven data bits with the parity bit  set  to  make
  882.               the overall parity odd.
  883.  
  884.  
  885. *SET RECEIVE
  886. SET RECEIVE              It is  possible  to  set  various  parameters
  887.           associated  with  the  receiving of the data from the remote
  888.           Kermit.  SET RECEIVE will enable  you  to  set  the  various
  889.           receive parameters.  Additional information is available for
  890.           the  SET  RECEIVE  commands  by  typing  HELP  SET   RECEIVE
  891.           <option>, where <option> is one of the following:
  892.  
  893.           EIGHTH-BIT-QUOTE              END-OF-LINE    PACKET-LENGTH
  894.           PADCHAR                       PADDING        QUOTE 
  895.           START-OF-PACKET               TIMEOUT
  896.  
  897. *SET RECEIVE EIGHTH-BIT-QUOTE
  898. SET RECEIVE 8TH-BIT-QUOTE or
  899. SET RECEIVE EIGHTH-BIT-QUOTE            This    command    sets    the
  900.           character  to  be  used (when necessary) to quote characters
  901.           which have the eighth bit (parity bit) set.  This is used to
  902.           transfer eight-bit bytes on a transmission medium which only
  903.           supports seven data bits.  The default value  is  46  (ASCII
  904.           "&").  Eighth-bit quoting will only be used if both Kermit's
  905.           can handle it, and the tranmission medium does not  transmit
  906.           8 data bits (as indicated by the SET PARITY command).
  907.  
  908.                     Kermit-10>SET RECEIVE EIGHTH-BIT-QUOTE nnn
  909.  
  910.           Where nnn is the ASCII value of the character (in octal)  to
  911.           use for quoting characters which have the eighth bit set.
  912.  
  913. *SET RECEIVE END-OF-LINE
  914. SET RECEIVE END-OF-LINE  This will set the end of line character  that
  915.           Kermit-10  expects  to receive from the remote Kermit.  This
  916.           is the character which terminates  a  packet.   The  default
  917.           value is 15 (ASCII CR, CTRL-M).
  918.  
  919.                     Kermit-10>SET RECEIVE END-OF-LINE nnn
  920.  
  921.           Where n is the ASCII value of the character to use  for  the
  922.           end of line character (in octal).
  923.  
  924. *SET RECEIVE PACKET-LENGTH
  925. SET RECEIVE PACKET-LENGTH               This  will  set  the   receive
  926.           packet length.  The value for this parameter must be between
  927.           10 and  96.   Packet  lengths  outside  of  this  range  are
  928.           illegal.  The default value is 80.
  929.  
  930.                     Kermit-10>SET RECEIVE PACKET-LENGTH 60
  931.  
  932. *SET RECEIVE PADCHAR
  933. SET RECEIVE PADCHAR      This parameter is the padding character  that
  934.           is  expected  by  Kermit-10.  The parameter must be an octal
  935.           number in the range of 0 to 37 or 177.  All other values are
  936.           illegal.   The default value is 0 (an ASCII NUL).  Kermit-10
  937.           does not normally need any padding characters.
  938.  
  939.                     Kermit-10>SET RECEIVE PADCHAR nnn
  940.  
  941.           Where nnn is the ASCII value of the character to be used  as
  942.           a pad character (in octal).
  943.  
  944. *SET RECEIVE PADDING
  945. SET RECEIVE PADDING      This command will set the number  of  padding
  946.           characters  that  are  expected  by  Kermit-10.  The default
  947.           value is 0.
  948.  
  949.                     Kermit-10>SET RECEIVE PADDING n
  950.  
  951.           Where n is the decimal number of padding characters to use.
  952.  
  953. *SET RECEIVE QUOTE
  954. SET RECEIVE QUOTE        This will  set  the  quoting  character  that
  955.           Kermit-10  will  expect  on  incoming messages.  This is the
  956.           character used to quote  control  characters.   The  default
  957.           value is 43 (ASCII "#").
  958.  
  959.                     Kermit-10>SET RECEIVE QUOTE nnn
  960.  
  961.           Where nnn is the ASCII value of the  quoting  character  (in
  962.           octal).
  963.  
  964. *SET RECEIVE START-OF-PACKET
  965. SET RECEIVE START-OF-PACKET             This  command  will  set   the
  966.           start  of  packet character for Kermit.  The start of packet
  967.           character must be in the  range  of  0  to  36  octal.   The
  968.           default  value  is 1 (ASCII SOH, CTRL-A).  This value should
  969.           only be changed if absolutely necessary.  It must be set the
  970.           same in both Kermit's.
  971.  
  972.                     Kermit-10>SET RECEIVE START-OF-PACKET 3
  973.  
  974. *SET RECEIVE TIMEOUT
  975. SET RECEIVE TIMEOUT      This will set the number  of  seconds  before
  976.           Kermit-10  will  request  that  the  other  Kermit wait when
  977.           attempting to receive a message.  This time out is  used  to
  978.           handle  transmission  errors  which  totally lose a message.
  979.           The default value is 15 seconds.
  980.  
  981.                     Kermit-10>SET RECEIVE TIMEOUT n
  982.  
  983.           Where n is the number of seconds to wait for a  message  (in
  984.           decimal).
  985.  
  986. *SET REPEAT
  987. SET REPEAT               This command sets the character to be used as
  988.           the  lead-in  character  for  a repeat sequence (a string of
  989.           characters which represents some number of characters  which
  990.           are  repeated  in  the  data).   Both  Kermit's must support
  991.           repeat compression for this to be in effect.  The  character
  992.           set  by  this  command  must  be in the range 41 ("1") to 76
  993.           (">") or 140 ("`") to 176 ("~").  The character will only be
  994.           used  on file which are being transmitted by Kermit-10.  The
  995.           REPEAT character used for incoming files is  decided  on  by
  996.           the  other Kermit.  The default value is 176 ("~").  A value
  997.           of 40 (a space) will disable repeat compression.
  998.  
  999.                     Kermit-10>SET REPEAT nnn
  1000.  
  1001.           Where  nnn  is  the  ASCII  value  for  the  repeat  quoting
  1002.           character (in octal).
  1003.  
  1004. *SET RETRY
  1005. SET RETRY This command sets the  maximum  number  of  times  Kermit-10
  1006.           should  try  to  send  specific packet.  There are two retry
  1007.           maximums,  one  for  the  initial  connection  packet   (the
  1008.           "SEND-INIT"),  the other for all other packets.  The default
  1009.           value for initial connections is 5.  The default  value  for
  1010.           all other packets is 16.
  1011.  
  1012.                     Kermit-10>SET RETRY keyword n
  1013.  
  1014.           Where keyword  is  either  INITIAL-CONNECTION  (for  initial
  1015.           connection packet) or PACKETS (for all other packets), and n
  1016.           is the decimal number of retries to attempt.
  1017.  
  1018. *SET SEND
  1019. SET SEND  It is possible to set various parameters associated with the
  1020.           sending  of data to the remote Kermit.  SET SEND will enable
  1021.           you to set the various SEND  parameters.   These  parameters
  1022.           should  not  normally be set, since, as part of the transfer
  1023.           initialization process,  the  two  Kermit's  exchange  their
  1024.           RECEIVE   parameters.    The  capability  of  setting  these
  1025.           parameters is provided so that the  transfer  initialization
  1026.           can  be  completed  even  if  the default parameters are not
  1027.           correct.  Additional information is available  for  the  SET
  1028.           SEND  command  by  typing  HELP  SET  SEND  <option>,  where
  1029.           <option> is one of the following:
  1030.  
  1031.           END-OF-LINE    PACKET-LENGTH  PADCHAR        PADDING QUOTE 
  1032.           START-OF-PACKET               TIMEOUT
  1033.  
  1034. *SET SEND END-OF-LINE
  1035. SET SEND END-OF-LINE     This will set the end of line  character  the
  1036.           Kermit-10  will  send  to  the  remote  Kermit.  This is the
  1037.           character which terminates a packet.  The default  value  is
  1038.           15 (ASCII CR, CTRL-M).
  1039.  
  1040.                     Kermit-10>SET SEND END-OF-LINE nnn
  1041.  
  1042.           Where n is the ASCII value of the character to use  for  the
  1043.           end of line character (in octal).
  1044.  
  1045. *SET SEND PACKET-LENGTH
  1046. SET SEND PACKET-LENGTH   This will set the SEND  packet  length.   The
  1047.           value  for this parameter must be between 10 and 96.  Packet
  1048.           lengths outside of this  range  are  illegal.   The  default
  1049.           value is 80.
  1050.  
  1051.                     Kermit-10>SET SEND PACKET-LENGTH 60
  1052.  
  1053. *SET SEND PADCHAR
  1054. SET SEND PADCHAR         This parameter is the padding character  that
  1055.           is  sent  to  the  remote  Kermit.  The parameter must be an
  1056.           octal number in the range of 0 to  37  or  177.   All  other
  1057.           values are illegal.  The default value is 0 (an ASCII NUL).
  1058.  
  1059.                     Kermit-10>SET SEND PADCHAR nnn
  1060.  
  1061.           Where nnn is the ASCII value of the character to be used  as
  1062.           a pad character (in octal).
  1063.  
  1064. *SET SEND PADDING
  1065. SET SEND PADDING         This command will set the number  of  padding
  1066.           characters  that  will  be  sent  to  the other Kermit.  The
  1067.           default value is 0.
  1068.  
  1069.                     Kermit-10>SET SEND PADDING n
  1070.  
  1071.           Where n is the decimal number of padding characters to use.
  1072.  
  1073. *SET SEND QUOTE
  1074. SET SEND QUOTE           This will  set  the  quoting  character  that
  1075.           Kermit-10  will  expect  on  incoming messages.  This is the
  1076.           character used to quote  control  characters.   The  default
  1077.           value is 43 (ASCII "#").
  1078.  
  1079.                     Kermit-10>SET SEND QUOTE nnn
  1080.  
  1081.           Where nnn is the ASCII value of the  quoting  character  (in
  1082.           octal).
  1083.  
  1084. *SET SEND START-OF-PACKET
  1085. SET SEND START-OF-PACKET This command will set  the  start  of  packet
  1086.           character for Kermit.  The start of packet character must be
  1087.           in the range of 0 to 36  octal.   The  default  value  is  1
  1088.           (ASCII  SOH,  CTRL-A).  This value should only be changed if
  1089.           absolutely necessary.  It must  be  set  the  same  in  both
  1090.           Kermit's.
  1091.  
  1092.                     Kermit-10>SET SEND START-OF-PACKET 3
  1093.  
  1094. *SET SEND TIMEOUT
  1095. SET SEND TIMEOUT         This will set the number  of  seconds  before
  1096.           Kermit-10  will  time out a message it has sent to the other
  1097.           Kermit.   message.   This  time  out  is  used   to   handle
  1098.           transmission  errors  which  totally  lose  a  message.  The
  1099.           default value is 15 seconds.
  1100.  
  1101.                     Kermit-10>SET SEND TIMEOUT n
  1102.  
  1103.           Where n is the number of seconds to wait for a  message  (in
  1104.           decimal).
  1105.  
  1106. *SET XON-XOFF-PROCESSING
  1107. SET XON-XOFF-PROCESSING        This will set the XON-XOFF-processing
  1108.       mode to DEFAULT, LOCAL, or REMOTE.  This  determines   who
  1109.       will handle the parsing of CNTRL-Q and CNTRL-S's.
  1110.  
  1111.             Kermit-10>SET XON-XOFF-PROCESSING keyword
  1112.  
  1113.       Where keyword is either DEFAULT, LOCAL, or REMOTE
  1114.  
  1115. *SHOW
  1116. SHOW      The  SHOW  command  will  allow  you  to  show  the  various
  1117.           parameters  that  are  set with the SET command.  Additional
  1118.           information is available for the SHOW command by typing HELP
  1119.           SHOW <option>, where <option> is one of the following:
  1120.  
  1121.           ALL           DAYTIME       DEBUGGING     FILE-INFORMATION 
  1122.           LINE-INFORMATION            PACKET-INFORMATION
  1123.           VERSION
  1124.  
  1125. *SHOW ALL
  1126. SHOW ALL  The SHOW ALL command will cause all of the parameters to  be
  1127.           listed.
  1128.  
  1129. *SHOW DAYTIME
  1130. SHOW DAYTIME            Display the current date and time.
  1131.  
  1132. *SHOW DEBUGGING
  1133. SHOW DEBUGGING          Display  whether  debugging  is  enabled,  the
  1134.           current  debugging  log  file (if any), and the message type
  1135.           out information.
  1136.  
  1137. *SHOW FILE-INFORMATION
  1138. SHOW FILE-INFORMATION   This will display the  parameters  related  to
  1139.           files  being used.  This includes the file byte size and the
  1140.           incomplete file disposition.
  1141.  
  1142. *SHOW LINE-INFORMATION
  1143. SHOW LINE-INFORMATION   Display the  terminal  line  being  used,  the
  1144.           parity being used and whether local echo is enabled.
  1145.  
  1146. *SHOW PACKET-INFORMATION
  1147. SHOW PACKET-INFORMATION This will display the current settings of  the
  1148.           send and receive packet parameters.
  1149.  
  1150. *SHOW VERSION
  1151. SHOW VERSION            Display the version number of Kermit-10.
  1152.  
  1153. *STATUS
  1154. STATUS    The current status of Kermit-10  will  be  displayed.   This
  1155.           includes  the  number  of characters that have been sent and
  1156.           received from  the  remote  Kermit.   Also  included  is  an
  1157.           estimate  of  the effective baud rate of the transfer.  This
  1158.           number is not intended to be exact, but only  an  indication
  1159.           of what range of throughput has been provided.