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

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