home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / extra / ndkerm.hfi < prev    next >
Text File  |  2020-01-01  |  7KB  |  184 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-ND  can  only  be  run in remote mode. Transfers  take
  6.          place  over  the controlling terminal line.  Currently  files
  7.          have to be transmitted from Kermit-ND one at a time.
  8.  
  9. 0EditChars
  10.  
  11.          Commands may be edited by using some control characters:
  12.  
  13.               ^A, DEL, ^H    Delete last character.
  14.               ^W             Delete last word.
  15.               ^Q,^X,^U       Delete whole line.
  16.  
  17.          In order to work satisfactorily your terminal must be able to
  18.          handle back-space properly.
  19.  
  20.          Also  remember  that  ESC  may  be  used  to deabbreviate the
  21.          current word, and that typing "?" gives some  information  as
  22.          to which words/parameters are expected.
  23.  
  24. 0EXIT
  25.  
  26.          The  EXIT command will cause  Kermit  to  return  to  command
  27.          level  in  Sintran.   This  command  is the same as the  QUIT
  28.          command. An example of this command is:
  29.  
  30.                  Kermit-ND>EXIT
  31.  
  32. 0HELP
  33.  
  34.          Give help on the various commands in Kermit-ND.
  35.  
  36. 0QUIT
  37.  
  38.          This   command  will cause Kermit to return to  command level
  39.          in Sintran. This is the same as the EXIT command.
  40.  
  41.                  Kermit-ND>QUIT
  42.  
  43. 0RECEIVE
  44.  
  45.          The RECEIVE command is used to make Kermit-ND wait for a file
  46.          transfer  transaction. No file spesification is neccesarry  -
  47.          the  local  Kermit  will tell Kermit-ND the  name(s)  of  the
  48.          file(s) to be received.
  49.  
  50.          The format of the command is:
  51.  
  52.                  Kermit-ND>RECEIVE
  53.  
  54. 0SEND
  55.  
  56.          The  SEND  command will allow you to send a file to the local
  57.          Kermit.  The file will be sent on  the  controlling  terminal
  58.          line after waiting the number of seconds specified by the SET
  59.          DELAY  command (default is 5 sec).  This gives the user  time
  60.          to  escape  back  to  the other Kermit and  issue  a  receive
  61.          command.
  62.  
  63.          The command format is:
  64.  
  65.                  Kermit-10>SEND filename
  66.  
  67.          Where    "filename"  is  any  normal  SINTRAN  filename  or a
  68.          filename preceded by an at sign ("@") -  thus  indicating  an
  69.          indirect  file.  This  indirect file should contain a list of
  70.          the SINTRAN files to be sent each on a single line  (use  '!'
  71.          as  a  comment  indicator  -  it  is  only  recognized at the
  72.          beginning of a line). Each such filename  may  be    followed
  73.          by  the  filename  to  be  sent  to the other Kermit (totally
  74.          untranslated!). If the SINTRAN filename form  is  used,   the
  75.          portion  of  the  filename consisting of user, directory-name
  76.          and version will be stripped before the filename  is    sent.
  77.          The    ":" is also  translated  to ".". No attempt is made to
  78.          deabbreviate the filename.
  79.  
  80. 0SET
  81.  
  82.          The SET command is used to set various parameters in Kermit.
  83.  
  84. 1USE-8-BIT-QUOTE
  85.  
  86.          This  command enables the user to switch 8-bit quoting on  or
  87.          off.  If  off,  Kermit-ND  will not agree  to  do  any  8-bit
  88.          quoting.  This way you may save some overhead, since an extra
  89.          character  has to be sent in order to quote for the 8'th  bit
  90.          (ND machines can output only 7 significant bits). If the file
  91.          to  be  transmitted consists of text, no information is  lost
  92.          (if ASCII alphabet is followed). The commands are:
  93.  
  94.                    Kermit-ND>SET USE-8-BIT-QUOTE OFF
  95.  
  96.          and
  97.                    Kermit-ND>SET USE-8-BIT-QUOTE AUTO
  98.  
  99.          The latter restores 8-bit-quote to its initial state, ie.
  100.          8-bit quoting is used if the two Kermit's agree.
  101.  
  102. 1DEBUGGING
  103.  
  104.          The  SET DEBUGGING command is used to enable or disable debug
  105.          type out on a file.  As Kermit-ND only  can  be  operated  in
  106.          remote   mode,  debug  output  can  not  be  written  to  the
  107.          controlling  terminal,  because  this  would  interfere  with
  108.          transmission.
  109.  
  110.                  Kermit-ND>SET DEBUGGING keyword
  111.  
  112.          Where  keyword  is  either ON, OFF, NO-LOG-FILE  or  LOG-FILE
  113.          filename.  Doing  a  SET DEBUGGING LOG-FILE  filename  causes
  114.          Kermit-ND  to  turn  debugging on and  append  all  debugging
  115.          output  to the file specified. If the file does not exist  it
  116.          will be created. SET DEBUGGING NO-LOG-FILE will close the log
  117.          file and turn debugging off.
  118.  
  119. 1DELAY
  120.  
  121.          The  DELAY  parameter is the number of seconds to wait before
  122.          sending data after a SEND command is given.  This is to allow
  123.          the  user  time to escape back to the other Kermit and give a
  124.          RECEIVE command.
  125.  
  126.                  Kermit-ND>SET DELAY number-of-seconds
  127.  
  128.          Where  number of seconds is the (decimal) number of second to
  129.          wait before sending data. The default setting is 5 seconds.
  130.  
  131. 1FILE-WARNING
  132.  
  133.          If  file-warning is on, Kermit-ND simply refuses to overwrite
  134.          an existing file. This will be corrected/changed some time in
  135.          the future. The two possible parameters are:
  136.  
  137.                  Kermit-ND>SET FILE-WARNING ON
  138.  
  139.          and
  140.  
  141.                  Kermit-ND>SET FILE-WARNING OFF
  142.  
  143.          The default is no FILE-WARNING.
  144.  
  145. 1RECEIVE
  146.  
  147.          So far it is only possible to set TIMEOUT associated with the
  148.          receiving of the  data  from  the  local  Kermit.
  149.  
  150.          This  will  set the number of seconds before  Kermit-ND  will
  151.          time out a message it has sent to the other Kermit. This time
  152.          out  is used to handle packets that are completely lost.  The
  153.          default  value  is 5 seconds.
  154.  
  155.                  Kermit-ND>SET RECEIVE TIMEOUT n
  156.  
  157.          Where  n is the number of seconds to wait for a  message  (in
  158.          decimal).
  159.  
  160. 1SEND
  161.  
  162.          The  only parameter currently implemented here is the TIMEOUT
  163.          associated with sending of packets.
  164.  
  165.          This  will  set  the  number of seconds before Kermit-ND will
  166.          time out a message it has sent to the  other  Kermit.    This
  167.          time  out is used to handle packets that are completely lost.
  168.          The default value is 5 seconds.
  169.  
  170.                  Kermit-ND>SET SEND TIMEOUT n
  171.  
  172.          Where n is the number of seconds to wait for a  message  (in
  173.          decimal).
  174.  
  175. 0STATISTICS
  176.  
  177.          This  command  is  used  to   display   various   information
  178.          concerning  the  previous transaction.  Information displayed
  179.          includes  real  time   and   computer   time   spent   during
  180.          transaction, and effective baud-rate to/from file.
  181.  
  182. 9999
  183. 
  184.