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