home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / CK5A188S.ZIP / ckoker.ini < prev    next >
Text File  |  1992-11-23  |  2KB  |  52 lines

  1. EXTPROC C:\CKERMIT\CKERMIT.EXE
  2. ;
  3. ; Sample C-Kermit initialization file for OS/2.
  4. ;
  5. ; Install in same directory with C-Kermit,
  6. ; and make sure that directory is in your OS/2 PATH.
  7. ;
  8. ; Authors: Christine Gianone, Frank da Cruz, Columbia University, August 1992
  9. ;
  10. Echo Executing \v(cmdfile)...
  11.  
  12. ; Dialing and communications
  13. ;
  14. set dial display on             ; Let me watch dialing
  15. if exist c:/ckermit/ckermit.kdd -
  16.   set dial directory -
  17.   c:/ckermit/ckermit.kdd        ; This is my dialing directory
  18.  
  19. ; The following are samples only.
  20. ; Change them to fit your configuration!
  21. ;
  22. set modem hayes                 ; I have a Hayes-like modem
  23. set port com1                   ; On communication port 1
  24. set speed 19200                 ; It goes fast
  25. set flow xon/xoff               ; Use software flow control
  26.  
  27. ; File transfer preferences
  28. ;
  29. set file display fullscreen     ; Use the fullscreen file transfer display   
  30. set receive packet-length 1000  ; Use 1000-character Kermit packets 
  31. set window 2                    ; Use 2 window slots
  32. set block 3                     ; Use 16-bit CRC error checking        
  33.  
  34. ; Character sets, change if necessary.
  35. ; Your current PC code page is used automatically as the FILE character-set
  36. ; and as the local half of your TERMINAL character-set.
  37. ;
  38. set command byte 8              ; Use 8 bits between Kermit and console
  39. set xfer char latin1            ; Use Latin-1 for text file transfer
  40. set term char latin1            ; And use Latin-1 during CONNECT mode
  41.  
  42. ; Sample key redefinitions
  43. ;
  44. set key \27 \96                 ; Swap the Escape and Accent-Grave keys
  45. set key \96 \27                 ; ...
  46.  
  47. ; Macro and prompt definitions
  48. ;
  49. define cls echo \27[H\27[2J     ; Define CLS command to clear the screen
  50. define os2 push            ; Make OS2 a synonym for PUSH, RUN, etc.
  51. set prompt [\v(dir)] C-Kermit>  ; Make prompt show my current directory
  52.