home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / multics / mukmthlp.txt < prev    next >
Text File  |  2020-01-01  |  6KB  |  170 lines

  1. :Info: set:  Kermit Set Command
  2. Syntax: set <group_name> <parm> <val>
  3.             - or -
  4.         set <parm> <val>
  5.  
  6.    This command allows the user to set various parameters that determin
  7.    kermit's behavior.  Settings are retained between invocations during
  8.    a process except for the current directory and the setting of the
  9.    trace option which defaults to off.
  10.  
  11.    The <group_name> may be one of send, receive or rec.  Parameters for
  12.    this syntax take the form:
  13.      PACKET-LENGTH <decimal_number>  Sets packet length
  14.      PADDING <decimal_number>  Sets number of padding characters
  15.      PADCHAR <octal_number>    Set the padding character to <octal_number>
  16.      TIMEOUT <decimal_number>  Sets max time to wait for a packet
  17.      END-OF-LINE <octal_number> End of line character to use on packets
  18.      QUOTE <octal_number>  Sets quote character, send group only.
  19.  
  20.    The second syntax allows the following:
  21.      DELAY <n>  Sets initial delay to n seconds on send.
  22.      DIR <pathname> Sets current directory to that specified.
  23.      FILE-WARNING, FW {on | off} Determines if file overwrite will be checked.
  24.      MODES <modes string> Sets terminal modes for file transfer.
  25.      PARITY {on | off}  Allows parity quoting if the other end agrees.
  26.      REPEAT {on | off}  Allows repeat quoting if the other end agrees.
  27.      TRACE {on | off} Determines if packets will be logged in a trace file.
  28.      TEXT {on | off}  If on stops adding chars to a file when a  CTRL-Z is
  29.        received.  When off, Binary mode is in effect.
  30.      CHECKTYPE <n> Sets the checksum type.  n may be any of 1, 2 or 3.
  31.        1 is standard, 2 is a double byte and 3 is a crc code.
  32.  
  33.  
  34.  
  35.  
  36. :Info: server:  Kermit Server Mode
  37. Syntax: server
  38.  
  39.    This command puts the Multics kermit into server mode.  After executing
  40. this command, the Multics kermit will expect to receive its commands from
  41. the remote computer using special format command packets.  Further terminal
  42. input will be ignored.  Upon execution of a FINISH command at the remote end,
  43. server mode will terminate and Multics kermit will return to the request loop.
  44.  
  45.  
  46.  
  47.  
  48. :Info:  help:  Kermit Help
  49. Syntax: help [<command>]
  50.         ? [<command>]
  51.  
  52.    When help is issued without parameters it will print a list of available
  53.    commands.  It may also be issued with the name of a command for a short
  54.    description of the command, its parameters and its actions.  No control
  55.    args are currently supported for the help command.
  56.  
  57.  
  58.  
  59.  
  60. :Info: show:  Kermit Show Command
  61. Syntax: show [<parameter>]
  62.  
  63.    When the show command is invoked without any parameters, its default action
  64.    is to display the status of all settable options.
  65.  
  66.    When it is invoked with a parameter, it will display only that option or
  67.    option group.  Only one parameter is allowed on the show command.
  68.  
  69.    The parameter may be chosen from:
  70.      SEND, RECEIVE, REC, DELAY, FILE-WARNING, FW, TRACE, DIR, REPEAT,
  71.      PARITY, MODES, TEXT or CHECKTYPE.
  72.  
  73.      Send, receive and rec yield the current values of the send or receive
  74.      option groups.  Delay is the delay time before sending begins. File-
  75.      warning, or fw, shows whether or not the file warning switch has been
  76.      turned on.  Trace is the status of the trace facility. Dir is the current
  77.      directory.  Parity and repeat show the status of parity and repeat
  78.      switches respectively.  Modes are the terminal modes used for file
  79.      transfer.  Text is the transfer mode for reception.  Checktype is the
  80.      type of checksum to use during transfer.
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. :Info: status:  Kermit Status Command
  88. Syntax: status
  89.  
  90.    The status command will print out the name of the last file transferred,
  91.    the total number of packets required to effect the transfer and the
  92.    number of retries that were necessary.
  93.  
  94.  
  95.  
  96.  
  97. :Info: exec:  Kermit Command Escape Mechanism
  98. Syntax: e <command_line>
  99.         exec <command_line>
  100.         ..<command_line>
  101.  
  102.    This command passes a command line to the Multics command processor.
  103.    All three versions are equivalent.  The command line does not have
  104.    to be enclosed in quotes.
  105.  
  106.  
  107.  
  108.  
  109. :Info: send:  Kermit Send Command
  110. Syntax: send <pathname>
  111.  
  112.    The pathname may be a starname matching multiple segments.  In this case
  113.    they are transferred one at a time.  The target of <pathname> must
  114.    exist.
  115.  
  116.    If only an entryname is specified, it is assumed to be in the current
  117.    directory, NOT the working directory.
  118.  
  119.    Kermit will display an OK on the terminal and wait for a preset time
  120.    before sending the first packet.  The delay defaults to 8 seconds, but
  121.    may be changed with the set delay n command.
  122.  
  123.    Kermit will return to the request loop when all files have been transferred.
  124.    Kermit will also return to the request loop if an unrecoverable error
  125.    occurs during transmission.  Status of the transmission may be observed
  126.    with the status command.
  127.  
  128.  
  129.  
  130.  
  131. :Info: receive: Kermit Receive Command
  132. Syntax: receive [<pathname>]
  133.  
  134.    If pathname is not specified, the entryname is taken from info transmitted
  135.    from the source computer.  It will be lower cased and the segment placed
  136.    in the current directory.
  137.  
  138.    If pathname is specified, it may be any legal Multics pathname.
  139.    If a relative or absolute pathname is specified, it overrides the
  140.    current directory.  If only an entryname is specified it is placed
  141.    in the cureent directory.
  142.  
  143.    The current directory defaults to the working directory at the time
  144.    kermit was invoked.  It may be changed with the set dir <dir_name> command.
  145.  
  146.    Kermit will display an OK on the terminal when it is ready to receive a
  147.    file and then wait for the initial packet from the source computer.
  148.  
  149.    Kermit will return to the request loop on completion of transfer.  More
  150.    than one file may be transferred during one session.  Transmission
  151.    errors may be observed using the status command.
  152.  
  153.  
  154.  
  155.  
  156. :Info: kermit: Kermit Info
  157. 1/20/84 kermit
  158.  
  159. Available commands:
  160.  
  161.     send <starname>
  162.     receive [<filename>]
  163.     show [<parameter>]
  164.     status
  165.     set <parameter_list>
  166.     help, ? [<command_name>]
  167.     exec, e, .. <command_line>
  168.     .
  169.     server
  170.