home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckc072.zip / ckdker.hlp < prev    next >
Text File  |  1988-08-16  |  3KB  |  85 lines

  1. For help on running Kermit, see also ckdker.bld and ckdker.doc .  Also, read
  2. the comments inside to the CLI files.  Some topics here are extracted from
  3. ckdker.bld. 
  4.  
  5. ckdker.doc is a user document for C-Kermit on the DG, and it is specifically
  6. relevant to AOS/VS.  ckdker.doc was derived from ckuker.doc, the document for
  7. Unix Kermit in general.  The Kermit examples in the document are written so
  8. that they perform the same function as the Unix examples, but using CLI syntax
  9. and AOS/VS file naming and wildcards.
  10.  
  11.  
  12. If you are using a non-DG device, as I often do, then issue this command:
  13.  
  14.      CHAR/ON/NAS
  15.      
  16. Then, Kermit will issue the proper on-screen delete characters.
  17.  
  18.  
  19. If you are going to use the Kermit terminal emulator at higher baud rates, you
  20. may need to set your interactive console for xon/xoff protocol.  Issue this
  21. command: CHAR/ON/XIFC/XOFC.  This may help prevent loss of characters.  On a
  22. TEK 4105, you could change your terminal setup to: FLAG IN/OUT.  The TEK
  23. handles its xon/xoff protocol inside its firmware, so there is no need to set
  24. CHAR/ON/XIFC/XOFC.   Handling the protocol by the terminal is preferable.
  25.  
  26.  
  27. To run kermit, the syntax is:
  28.  
  29.      xeq kermit[/switches] [arguments]
  30.  
  31. If your installation has a kermit.cli file, you would enter:
  32.  
  33.      kermit[/switches] [arguments]
  34.  
  35. The allowable switches are described in ckdker.doc, as are the allowable
  36. arguments.  But I would like to emphasize five key points, which are useful
  37. for novice and for veteran C-Kermit users, and for anyone else who does not
  38. like to read user manuals:
  39.  
  40.      1.  Try out this command for learning command line operation:
  41.  
  42.                xeq kermit -h
  43.  
  44.      2.  At the C-Kermit prompt, enter ? for the interactive options:
  45.  
  46.                C-Kermit>?
  47.  
  48.      3.  At any time that a partial or complete command is entered, enter a
  49.          question mark:
  50.  
  51.                C-Kermit>se?
  52.                C-Kermit>set ?
  53.  
  54.      4.  Good online help is available at the C-Kermit prompt:
  55.  
  56.                C-Kermit>help
  57.                C-Kermit>help set
  58.                C-Kermit>help set speed
  59.  
  60.      5.  Some error checking will keep you out of trouble, so play around with
  61.          this program.  For example, at the C-Kermit prompt, if you enter:
  62.  
  63.                C-Kermit>set line @con5
  64.                C-Kermit>send some_file_of_mine
  65.  
  66.           You get an error that you must set your 'speed' first.
  67.  
  68.  
  69. The files in this distribution are described as follows (in alphabetical
  70. order): 
  71.  
  72.      ckdbat.cli          A sample CLI to run a batch job
  73.      ckdbat.run          The output from Kermit run in batch mode
  74.      ckdcc.cli           Macro to compile a Kermit module
  75.      ckdker.ann          Announcement of this version of Kermit
  76.      ckdker.bld          Instructions on installing or adapting this Kermit
  77.      ckdker.bwr          Known bugs and quirks
  78.      ckdker.cli          Sample CLI for running Kermit on a DG
  79.      ckdker.doc          Data General C-Kermit user document
  80.      ckdker.hlp          This file
  81.      ckdker.utl          Description of de-boo and utility files and sources
  82.      ckdlnk.cli          Macro to link Kermit
  83.      ckdmak.cli          Macro to Make Kermit from scratch
  84.      ckdsrc.lis          List of all modules to compile, excepting ckwart.c
  85.